CListCtrl::EditLabel
項目のテキストの埋め込み先編集を開始します。
CEdit* EditLabel(
int nItem
);
パラメーター
- nItem
編集できるリスト ビューの項目のインデックス。
戻り値
ポインター、項目のテキストを編集するための CEdit のオブジェクトに成功した; それ null。
解説
LVS_EDITLABELS のウィンドウ スタイルのリスト ビュー コントロールは、項目のラベルを編集できるようにします。 ユーザーはフォーカスがある項目のラベルをクリックして編集を開始します。
指定されたリスト ビューの項目のテキストの埋め込み先編集を開始するために、この関数を使用します。
使用例
// Make sure the focus is set to the list view control.
m_myListCtrl.SetFocus();
// Show the edit control on the label of the first
// item in the list view control.
CEdit* pmyEdit = m_myListCtrl.EditLabel(1);
ASSERT(pmyEdit != NULL);
必要条件
ヘッダー: afxcmn.h