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

Sectionに描画される色パターンを示すSystem.Drawing.Colorを取得または設定します。
構文
Public Property PatternColor As Color
public Color PatternColor {get; set;}

プロパティ値

Cellに描画される色パターンを表すSystem.Drawing.Color値。既定値はColor.Emptyです。
使用例
次のサンプルコードは、PatternColorとPatternStyleを使用してパターン効果を作成する方法を示します。このサンプルコードは、Sectionクラスに示されている詳細なコード例の一部を抜粋したものです。
void setPattenButton_Click(object sender, EventArgs e)
{
    Template template = Template.Default;

    Section section = template.Row;

    // The PatternColor, PatternStyle should be use together
    section.PatternColor = Color.Red;
    section.PatternStyle = MultiRowHatchStyle.BackwardDiagonal;

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

    Dim section As Section = template1.Row

    ' The PatternColor, PatternStyle should be use together
    section.PatternColor = Color.Red
    section.PatternStyle = MultiRowHatchStyle.BackwardDiagonal

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

Section クラス
Section メンバ
PatternStyle プロパティ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.