GrapeCity ActiveReports for .NET 14.0J
X1 プロパティ
使用例 

GrapeCity.ActiveReports アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > Line クラス : X1 プロパティ
線の始点の水平座標を取得または設定します。
シンタックス
'宣言
 
Public Property X1 As Single
public float X1 {get; set;}
解説

線の座標はセクションの左上隅に対する相対座標です。APIの座標単位はインチです。ActiveReport.CmToInchおよびActiveReport.InchToCmを使用して、センチ単位に変換できます。デザイナではセンチとインチの両方の単位がサポートされています。

使用例
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
参照

Line クラス
Line メンバ
X2 プロパティ
Y1 プロパティ
Y2 プロパティ