PowerTools ActiveReports for .NET 9.0J
Line クラス
メンバ  使用例 

レポートに線を印刷します。
オブジェクト モデル
Line クラス
構文
'宣言
 
Public NotInheritable Class Line 
   Inherits ARControl
public sealed class Line : ARControl 
使用例
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.line1.LineColor = System.Drawing.Color.Blue;
    this.line1.LineStyle = LineStyle.DashDot;
    this.line1.LineWeight = 2.0f;
    this.line1.X1 = 1.0f;
    this.line1.X2 = 4.0f;
    this.line1.Y1 = 0.5f;
    this.line1.Y2 = 0.5f;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.Line1.LineColor = System.Drawing.Color.Blue
    Me.Line1.LineStyle = LineStyle.DashDot
    Me.Line1.LineWeight = 2.0F
    Me.Line1.X1 = 1.0F
    Me.Line1.X2 = 4.0F
    Me.Line1.Y1 = 0.5F
    Me.Line1.Y2 = 0.5F
End Sub
継承階層

System.Object
   GrapeCity.ActiveReports.SectionReportModel.ARControl
      GrapeCity.ActiveReports.SectionReportModel.Line

参照

関連項目

Line メンバ
GrapeCity.ActiveReports.SectionReportModel 名前空間

 

 


©2003-2015 GrapeCity inc. All rights reserved.