CStatusBarCtrl::GetTextLength
Recupera la longitud, en caracteres, de texto de la parte determinada de un control de barra de estado.
int GetTextLength(
int nPane,
int* pType = NULL
) const;
Parámetros
nPane
índice basado en cero de la parte de la que recuperar el texto.pType
Puntero a un entero que recibe información de tipo. el tipo puede ser uno de estos valores:El texto de0 The se dibuja con un borde para producirse más bajo que el plano de la barra de estado.
El texto deSBT_NOBORDERS The se dibuja sin límites.
El texto deSBT_OWNERDRAW Z es dibujado por la ventana primaria.
El texto deSBT_POPOUT The se dibuja con un borde aparezca posterior al plano de la barra de estado.
Valor devuelto
Longitud, en caracteres, de texto.
Ejemplo
int nType;
int nLength = m_wndSBC.GetTextLength(0, &nType);
switch( nType )
{
case 0:
// Text is drawn with a border to appear lower than the
// plane of the status bar
break;
case SBT_NOBORDERS:
// text is drawn without borders
break;
case SBT_OWNERDRAW:
// Text is drawn by the parent window
break;
case SBT_POPOUT:
// Text is drawn with a border to appear higher than the
// plane of the status bar
break;
}
Requisitos
encabezado: afxcmn.h