PowerTools PlusPak for Windows Forms 8.0J
CloseTab メソッド (GcTabBase)
使用例 

閉じるタブのインデックス。
インデックスで指定したタブページを閉じます。
構文
Public Sub CloseTab( _
   ByVal index As Integer _
) 
public void CloseTab( 
   int index
)

パラメータ

index
閉じるタブのインデックス。
例外
例外解説
System.ArgumentOutOfRangeException

indexが0未満です。

または

indexが、このGcTabControlにあるタブページの数以上です。

使用例

次のサンプルコードは、Button.ClickイベントでCloseTabを呼び出してタブを閉じる方法を示します。このサンプルコードを実行するには、System.Windows.Forms.Formプロジェクトを作成し、gcTabControl1という名前のGcTabControlインスタンスとbutton1という名前のSystem.Windows.Forms.Buttonインスタンスを追加して、以下のコードをプロジェクトに貼り付けます。そして、このイベントハンドラをButton.Clickイベントに関連付けます。

private void GcTabBaseCloseTab(object sender, EventArgs e)
{
    // Close the last tab page of gcTabControl1.
    if (this.gcTabControl1.TabPages.Count > 0)
    {
        this.gcTabControl1.CloseTab(this.gcTabControl1.TabPages.Count - 1);
    }
}
Private Sub GcTabBaseCloseTab(ByVal sender As Object, ByVal e As EventArgs)
    ' Close the last tab page of gcTabControl1.
    If Me.gcTabControl1.TabPages.Count > 0 Then
        Me.gcTabControl1.CloseTab(Me.gcTabControl1.TabPages.Count - 1)
    End If
End Sub
プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

GcTabBase クラス
GcTabBase メンバ

Send Feedback