PowerTools SPREAD for Windows Forms 8.0J
TabButton プロパティ


描画するタブ ボタンを取得します。
構文
'Declaration
 
Public ReadOnly Property TabButton As TabStripButton
'使用法
 
Dim instance As PaintTabStripButtonEventArgs
Dim value As TabStripButton
 
value = instance.TabButton
public TabStripButton TabButton {get;}

プロパティ値

タブ ストリップ ボタンの種類を指定する TabStripButton 設定
次のサンプル コードは、タブ ストリップのボタンを描画します。
private void fpspread1PaintTabStripButton(object sender, FarPoint.Win.Spread.PaintTabStripButtonEventArgs e) 
{ 
      if (e.TabButton == TabStripButton.Home) { 
            e.Cancel = true; 
            e.Graphics.FillRectangle(Brushes.Aqua, new RectangleF(e.ButtonRectangle.X, e.ButtonRectangle.Y, e.ButtonRectangle.Width, e.ButtonRectangle.Height)); 
      } 
}
Private Sub fpspread1PaintTabStripButton(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.PaintTabStripButtonEventArgs)
Handles FpSpread1.PaintTabStripButton
      If e.TabButton = TabStripButton.Home Then
            e.Cancel = True
            e.Graphics.FillRectangle(Brushes.Aqua, New RectangleF(e.ButtonRectangle.X, e.ButtonRectangle.Y, e.ButtonRectangle.Width, e.ButtonRectangle.Height))
      End If
End Sub
参照

PaintTabStripButtonEventArgs クラス
PaintTabStripButtonEventArgs メンバ

 

 


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