GrapeCity SPREAD for Windows Forms 12.0J
DrawRectangle プロパティ


グレー領域を表す矩形領域を取得または設定します。
構文
'Declaration
 
Public ReadOnly Property DrawRectangle As Rectangle
'使用法
 
Dim instance As PaintGrayAreaEventArgs
Dim value As Rectangle
 
value = instance.DrawRectangle
public Rectangle DrawRectangle {get;}

プロパティ値

グレー領域を表す領域を含む Rectangle オブジェクト
次のサンプル コードは、グレー領域を描画します。
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 メンバ

 

 


Copyright © 2004 GrapeCity inc.