GrapeCity.Windows.SpreadGrid 名前空間 > EditBaseCellType クラス : IsReadOnly プロパティ |
IsEnabled
プロパティによってコントロールを無効にする代わりにこの機能を使用することで、内容をコピーしたりツールチップを表示したりすることが可能となります。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