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

閉じるGcTabPage
指定したタブページを閉じます。
構文
Public Overloads Sub CloseTab( _
   ByVal tabPage As GcTabPage _
) 
public void CloseTab( 
   GcTabPage tabPage
)

パラメータ

tabPage
閉じるGcTabPage
例外
例外解説
System.ArgumentNullException

tabPageがnullです。

または

tabPageが、このGcTabControlのタブページではありません。

使用例

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

private void GcTabControlCloseTab(object sender, EventArgs e)
{
    // Close the last tab page of gcTabControl1.
    if (this.gcTabControl1.TabPages.Count > 0)
    {
        this.gcTabControl1.CloseTab(this.gcTabControl1.TabPages[this.gcTabControl1.TabPages.Count - 1]);
    }
}
Private Sub GcTabControlCloseTab(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(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

参照

GcTabControl クラス
GcTabControl メンバ
オーバーロード一覧

Send Feedback