PowerTools ActiveReports for .NET 9.0J
Border プロパティ (ARControl)
使用例 

コントロールの各辺の罫線スタイルを定義する罫線オブジェクトを取得します。
構文
'宣言
 
Public Overridable ReadOnly Property Border As Border
public virtual Border Border {get;}

プロパティ値

デフォルト罫線オブジェクト。

使用例
private void detail_Format(object sender, System.EventArgs eArgs)
{
    GrapeCity.ActiveReports.Border b = new GrapeCity.ActiveReports.Border();
    this.textBox1.Border.BottomStyle = BorderLineStyle.ThickDash;
    this.textBox1.Border.TopStyle = BorderLineStyle.ThickDash;
    b = this.textBox1.Border.Clone();
    this.textBox2.Border.BottomStyle = b.BottomStyle;
    this.textBox2.Border.TopStyle = b.TopStyle;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Dim b As New GrapeCity.ActiveReports.Border
    Me.TextBox1.Border.BottomStyle = BorderLineStyle.ThickDash
    Me.TextBox1.Border.TopStyle = BorderLineStyle.ThickDash
    b = Me.TextBox1.Border.Clone()
    Me.TextBox2.Border.BottomStyle = b.BottomStyle
    Me.TextBox2.Border.TopStyle = b.TopStyle
End Sub
参照

関連項目

ARControl クラス
ARControl メンバ

 

 


©2003-2015 GrapeCity inc. All rights reserved.