Gets or sets the horizontal coordinate of the line's starting point.
public float X1 {get; set;}
'Declaration
Public Property X1 As Single
private void Detail_Format(object sender, System.EventArgs eArgs)
{
this.Line1.X1 = 1.0f;
this.Line1.X2 = 4.0f;
this.Line1.Y1 = 0.5f;
this.Line1.Y2 = 0.5f;
}
Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
Me.Line1.X1 = 1.0F
Me.Line1.X2 = 4.0F
Me.Line1.Y1 = 0.5F
Me.Line1.Y2 = 0.5F
End Sub