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

Sectionのパターン効果を描画する際のパターンスタイルを取得または設定します。
構文
Public Property PatternStyle As MultiRowHatchStyle
public MultiRowHatchStyle PatternStyle {get; set;}

プロパティ値

パターンスタイルを示すMultiRowHatchStyle値の1つ。既定値はMultiRowHatchStyle.Noneです。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値がMultiRowHatchStyle値の1つではありません。
解説
セクションの親の外観ではパターンスタイルはサポートされていないため、このプロパティをMultiRowHatchStyle.Inheritに設定すると、セクションの実際のパターン効果はMultiRowHatchStyle.Noneになります。
使用例
次のサンプルコードは、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 メンバ
PatternColor プロパティ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.