GrapeCity.Win.Containers 名前空間 > GcTabControl クラス > CloseTab メソッド : CloseTab(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