PowerTools MultiRow for Windows Forms 8.0J
Border プロパティ (Section)
使用例 

Sectionの境界線を取得または設定します。
構文
Public Property Border As BorderBase
public BorderBase Border {get; set;}

プロパティ値

Sectionの境界線を表すBorderBase値。既定値はnull 参照 (Visual Basicでは Nothing)です。
使用例
次のサンプルコードは、セクション境界線の使用方法を示します。このサンプルコードは、Sectionクラスに示されている詳細なコード例の一部を抜粋したものです。
void setBorderButton_Click(object sender, EventArgs e)
{
    Template template = Template.Default;

    // Change row section border.
    Section rowSection = template.Row;
    rowSection.Border = new RoundedBorder(LineStyle.Double, Color.Red, 0.3f);

    // Change column header section border.
    Section headerSection = template.ColumnHeaders[0];
    headerSection.Border = new RoundedBorder(LineStyle.Double, Color.Red, 0.3f);

    // Reload template.
    this.gcMultiRow1.Template = template;
}
Private Sub setBorderButton_Click(ByVal sender As Object, ByVal e As EventArgs) Handles setBorderButton.Click
    Dim template1 As Template = Template.Default

    ' Change row section border.
    Dim rowSection As Section = template1.Row
    rowSection.Border = New RoundedBorder(LineStyle.Double, Color.Red, 0.3F)

    ' Change column header section border.
    Dim headerSection As Section = template1.ColumnHeaders(0)
    headerSection.Border = New RoundedBorder(LineStyle.Double, Color.Red, 0.3F)

    ' Reload template.
    Me.gcMultiRow1.Template = template1
End Sub
参照

Section クラス
Section メンバ
Border クラス
RoundedBorder クラス
ThreeDBorder クラス

 

 


© 2008-2015 GrapeCity inc. All rights reserved.