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

Cellのサイズ変更方法を示す値を取得または設定します。
構文
Public Property ResizeMode As ResizeMode
public ResizeMode ResizeMode {get; set;}

プロパティ値

ResizeMode値の1つ。既定値はResizeMode.Noneです。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値がResizeMode値の1つではありません。
解説
セルのサイズ変更方向は、そのセルが含まれるSectionによって異なります。ColumnHeaderSectionまたはRowでは、セルの右下隅をドラッグしてセルのサイズを拡大または縮小します。ColumnFooterSectionでは、セルの右上隅をドラッグしてセルのサイズを拡大または縮小します。
使用例
次のサンプルコードは、このプロパティを使用して、UI操作によるセルのサイズ変更を許可するかどうかを制御する方法を示します。このサンプルコードは、GcMultiRow.AllowUserToResizeクラスに示されている詳細なコード例の一部を抜粋したものです。
void makeFirstCellResizable_Click(object sender, EventArgs e)
{
    Cell cell = this.gcMultiRow1.Rows[0][0];

    // Make cell resizable in two directions.
    // You can make any cell can (or can not) resize by change this property's value.
    cell.ResizeMode = ResizeMode.Both;
}
Private Sub makeFirstCellResizable_Click(ByVal sender As Object, ByVal e As EventArgs) Handles makeFirstCellResizable.Click
    Dim cell As Cell = Me.gcMultiRow1.Rows(0)(0)

    ' Make cell resizable in two directions.
    ' You can make any cell can (or can not) resize by change this property's value.
    cell.ResizeMode = ResizeMode.Both
End Sub
参照

Cell クラス
Cell メンバ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.