GrapeCity SPREAD for WPF 2.0J
IsReadOnly プロパティ (EditBaseCellType)

このセルが読み取り専用かどうかを示す値を取得または設定します。
構文
'Declaration
 
Public Property IsReadOnly As Boolean
public bool IsReadOnly {get; set;}

プロパティ値

セルが読み取り専用の場合は true。それ以外の場合は false
既定値は false です。
解説
このプロパティを true に設定すると、実行時にユーザーがセルの内容を変更できなくなります。IsEnabled プロパティによってコントロールを無効にする代わりにこの機能を使用することで、内容をコピーしたりツールチップを表示したりすることが可能となります。
次のサンプルは TextCellType を作成します。ユーザーは、このセルを編集することはできませんが、文字列を選択することができます。
public void SetTextCell6()
{
    TextCellType textCellType1 = new TextCellType();
    //Cell can enter edit status and select the text, but cannot edit text
    textCellType1.IsReadOnly = true;

    this._gcSpreadGrid1[0, 0].CellType = textCellType1;
}
Public Sub SetTextCell6()
    Dim textCellType1 As New TextCellType()
    'Cell can enter edit status and select the text, but cannot edit text
    textCellType1.IsReadOnly = True

    Me._gcSpreadGrid1(0, 0).CellType = textCellType1
End Sub
参照

EditBaseCellType クラス
EditBaseCellType メンバ

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.