CListBox::GetText
リスト ボックスから文字列を取得します。
int GetText(
int nIndex,
LPTSTR lpszBuffer
) const;
void GetText(
int nIndex,
CString& rString
) const;
パラメーター
nIndex
取得する文字列のインデックスを指定します。lpszBuffer
文字列を受け取るバッファーへのポインター。バッファーは文字列と終端の null 文字の十分な領域を持つ必要があります。文字列のサイズは GetTextLen のメンバー関数を呼び出して、事前に確認できます。rString
CString オブジェクトへの参照。
戻り値
終端の NULL 文字を除いた文字列の長さ (バイト単位)。nIndex が有効なインデックスを指定しない場合、戻り値は LB_ERRです。
解説
このメンバー関数の 2 番目の形式は文字列のテキストを含む CString のオブジェクトを塗りつぶします。
使用例
// Dump all of the items in the list box.
CString str, str2;
int n;
for (int i = 0; i < m_myListBox.GetCount(); i++)
{
n = m_myListBox.GetTextLen(i);
m_myListBox.GetText(i, str.GetBuffer(n));
str.ReleaseBuffer();
str2.Format(_T("item %d: %s\r\n"), i, str.GetBuffer(0));
AFXDUMP(str2);
}
必要条件
ヘッダー: afxwin.h