Condividi tramite


CListBox::GetText

Ottiene una stringa di una casella di riepilogo.

int GetText( 
   int nIndex, 
   LPTSTR lpszBuffer  
) const; 
void GetText( 
   int nIndex, 
   CString& rString  
) const;

Parametri

  • nIndex
    Specifica l'indice in base zero della stringa da recuperare.

  • lpszBuffer
    Punti al buffer che riceve la stringa. Il buffer disponga di spazio sufficiente per la stringa e un carattere di terminazione null. La dimensione della stringa può essere determinata tempo prima di chiamare la funzione membro GetTextLen.

  • rString
    Riferimento a un oggetto CString.

Valore restituito

La lunghezza espressa in byte della stringa, escluso il carattere di terminazione null. Se nIndex non specifica un indice valido, il valore restituito è LB_ERR.

Note

La seconda forma di questa funzione membro inserisce un oggetto CString di testo della stringa.

Esempio

// 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);
}

Requisiti

Header: afxwin.h

Vedere anche

Riferimenti

Classe CListBox

Grafico delle gerarchie

CListBox::GetTextLen

LB_GETTEXT