MESCIUS SPREAD for Windows Forms 15.0J
Bitmap プロパティ
使用例 

カスタムフォーカスインジケーターのレンダリングに使用するビットマップを取得または設定します。
構文
'宣言
 
Public Property Bitmap As Bitmap
public Bitmap Bitmap {get; set;}

プロパティ値

フォーカス インジケータのビットマップを含む Bitmap オブジェクト
使用例
次のサンプル コードは、フォーカス インジケータ レンダラのビットマップを設定します。
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;

Bitmap b;
b = cfi.Bitmap;
Color c = b.GetPixel(0, 0);
MessageBox.Show(c.ToString());
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

Dim b As Bitmap
b = cfi.Bitmap
Dim c As Color = b.GetPixel(0, 0)
MsgBox(c.ToString())
参照

CustomFocusIndicatorRenderer クラス
CustomFocusIndicatorRenderer メンバ

 

 


© MESCIUS inc. All rights reserved.