次の方法で共有


CTabCtrl::DeleteItem

タブ コントロールから指定された項目を削除します。

BOOL DeleteItem(
  int nItem 
);

パラメーター

  • nItem
    削除する項目の始まる値。

戻り値

正常終了した場合は 0 以外を返します。それ以外の場合は 0 を返します。

使用例

// This example assumes that there is a CTabCtrl member of the
// CTabDlg class named m_TabCtrl.  On a button handler
// called OnDeleteItem of the dialog box the tab control will
// delete the 0 indexed item.

void CTabDlg::OnDeleteItem()
{
   // Delete the first item in the tab control.
   m_TabCtrl.DeleteItem(0);   
}

必要条件

ヘッダー: afxcmn.h

参照

関連項目

CTabCtrl クラス

階層図

CTabCtrl::DeleteAllItems