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

タブを表す矩形領域を取得します。
構文
'宣言
 
Public ReadOnly Property TabRectangle As Rectangle
public Rectangle TabRectangle {get;}

プロパティ値

タブを表す矩形領域を含む Rectangle オブジェクト
使用例
private void fpspread1PaintTabStripButton(object sender, FarPoint.Win.Spread.PaintTabStripTabEventArgs e) 
{ 
      if (e.TabIndex = 0) { 
            e.Cancel = true;
            RectangleF r = e.TabPath.GetBounds(); 
            e.Graphics.FillRectangle(Brushes.Crimson, new RectangleF(e.TabRectangle.X, e.TabRectangle.Y, e.TabRectangle.Width, e.TabRectangle.Height)); 
      } 
}
Private Sub FpSpreadPaintTabStripTab(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.PaintTabStripTabEventArgs) Handles
FpSpread1.PaintTabStripTab

      If e.TabIndex = 0 Then
            e.Cancel = True
            Dim r As RectangleF
            r = e.TabPath.GetBounds()
            e.Graphics.FillRectangle(Brushes.Crimson, New RectangleF(e.TabRectangle.X, e.TabRectangle.Y, e.TabRectangle.Width, e.TabRectangle.Height))
      End If
参照

PaintTabStripTabEventArgs クラス
PaintTabStripTabEventArgs メンバ

 

 


© MESCIUS inc. All rights reserved.