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

GrapeCity.Windows.SpreadGrid 名前空間 > EditBaseCellType クラス : SelectionOpacity プロパティ
SelectionBrush の不透明度係数を取得または設定します。これは依存関係プロパティです。
シンタックス
'宣言
 
Public Property SelectionOpacity As Double
public double SelectionOpacity {get; set;}

プロパティ値

SelectionBrush の不透明度。既定値は 0.4 です。
使用例
次のサンプルは TextCellType を作成します。選択状態のテキストの背景色を設定します。
public void SetTextCell3()
{
TextCellType textCellType1 = new TextCellType();
//Enter edit status, select some text, the selection background will be Red.
textCellType1.SelectionBrush = new SolidColorBrush(Colors.Red);
textCellType1.SelectionOpacity = 0.6;
textCellType1.Multiline = true;
textCellType1.TextWrapping = System.Windows.TextWrapping.Wrap;

this._gcSpreadGrid1[0, 0].CellType = textCellType1;
}
Public Sub SetTextCell3()
Dim textCellType1 As New TextCellType()
'Enter edit status, select some text, the selection background will be Red.
textCellType1.SelectionBrush = New SolidColorBrush(Colors.Red)
textCellType1.SelectionOpacity = 0.6
textCellType1.Multiline = True
textCellType1.TextWrapping = System.Windows.TextWrapping.Wrap

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

EditBaseCellType クラス
EditBaseCellType メンバ