SPREAD for WPF 3.0J - GcSpreadGrid
IsReadOnly プロパティ (EditBaseCellType)
使用例 

GrapeCity.Windows.SpreadGrid 名前空間 > EditBaseCellType クラス : IsReadOnly プロパティ
このセルが読み取り専用かどうかを示す値を取得または設定します。
シンタックス
'宣言
 
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 メンバ