MESCIUS SPREAD for Windows Forms 15.0J
CustomFocusIndicatorRenderer コンストラクタ(Bitmap,Int32)
使用例 

レンダリングに使用するビットマップ
線の太さ(ピクセル単位)
ビットマップと線幅を指定して、カスタムフォーカスインジケータの新しいレンダラを作成します。
構文
'宣言
 
Public Function New( _
   ByVal bitmap As Bitmap, _
   ByVal thickness As Integer _
)
public CustomFocusIndicatorRenderer( 
   Bitmap bitmap,
   int thickness
)

パラメータ

bitmap
レンダリングに使用するビットマップ
thickness
線の太さ(ピクセル単位)
使用例
Bitmap bm = new Bitmap(2, 2);
bm.SetPixel(0, 0, Color.Black);
bm.SetPixel(0, 1, Color.Red);
bm.SetPixel(1, 0, Color.Red);
bm.SetPixel(1, 1, Color.Black); 

FarPoint.Win.Spread.CustomFocusIndicatorRenderer cfi = new FarPoint.Win.Spread.CustomFocusIndicatorRenderer(bm, 2);

fpSpread1.FocusRenderer = cfi;
Dim bm As New Bitmap(2, 2)
bm.SetPixel(0, 0, Color.Black)
bm.SetPixel(0, 1, Color.Red)
bm.SetPixel(1, 0, Color.Red)
bm.SetPixel(1, 1, Color.Black)

Dim cfi As New FarPoint.Win.Spread.CustomFocusIndicatorRenderer(bm, 2)

fpSpread1.FocusRenderer = cfi
参照

CustomFocusIndicatorRenderer クラス
CustomFocusIndicatorRenderer メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.