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

Sectionの現在の高さを取得または設定します。
構文
Public Property Height As Integer
public int Height {get; set;}

プロパティ値

Sectionの高さ(ピクセル単位)を表すSystem.Int32値。既定値は40です。
例外
例外解説
System.ArgumentOutOfRangeException指定された値が1未満です。
System.InvalidOperationExceptionGcMultiRowコントロールの実行時にこのプロパティが設定されました。
解説
Template.LayoutMode プロパティが LayoutMode.LeftToRight の場合は、このプロパティの値を変更しても効果はありません。
使用例
次のサンプルコードは、セクションの高さの使用方法を示します。このサンプルコードは、Sectionクラスに示されている詳細なコード例の一部を抜粋したものです。
void setHeightButton_Click(object sender, EventArgs e)
{
    Template template = Template.Default;

    Section section = template.Row;

    // When change section height, the cell's height do not change together.
    // Yow can add more cells, or adjust some cell's size to fit new template size.
    section.Height = 50;

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

    Dim section As Section = template1.Row

    ' When change section height, the cell's height do not change together.
    ' Yow can add more cells, or adjust some cell's size to fit new template size.
    section.Height = 50

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

Section クラス
Section メンバ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.