PowerTools SPREAD for Windows Forms 8.0J
Graphics プロパティ (PaintGrayAreaEventArgs)


グレー領域を処理するグラフィック デバイスを取得または設定します。
構文
'Declaration
 
Public ReadOnly Property Graphics As Graphics
'使用法
 
Dim instance As PaintGrayAreaEventArgs
Dim value As Graphics
 
value = instance.Graphics
public Graphics Graphics {get;}

プロパティ値

グラフィック デバイスを含む Graphics オブジェクト
次のサンプル コードは、グレー領域を描画します。
private void fpSpread1PaintGrayArea(object sender, FarPoint.Win.Spread.PaintGrayAreaEventArgs e) 
{ 
       e.Graphics.FillRectangle(Brushes.Blue, new RectangleF(e.DrawRectangle.X, e.DrawRectangle.Y, e.DrawRectangle.Width, e.DrawRectangle.Height)); 
}
Private Sub FpSpread1PaintGrayArea(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.PaintGrayAreaEventArgs) Handles
FpSpread1.PaintGrayArea
      e.Graphics.FillRectangle(Brushes.Blue, New RectangleF(e.DrawRectangle.X, e.DrawRectangle.Y, e.DrawRectangle.Width, e.DrawRectangle.Height))
End Sub
参照

PaintGrayAreaEventArgs クラス
PaintGrayAreaEventArgs メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.