commctrl.h

Macro ListView_GetEmptyText

Obtiene el texto que será mostrado cuando el control list-view esté vacío. Se puede usar esta macro o enviar el mensaje LVM_GETEMPTYTEXT explícitamente.

Definición

BOOL ListView_GetEmptyText(
     HWND hwnd,
     PWSTR pszText,
     UINT cchText
);

Descripción

hwnd
Un manipulador del control list-view.
pszText
Un puntero a un buffer Unicode terminado en cero del tamaño especificado por cchText que recibirá el texto. El proceso que llama es el responsable de obtener el buffer.
cchText
El tamaño del buffer apuntado por pszText, incluyendo el terminador NULL.

Valor de retorno

Devuelve TRUE si tiene éxito, o FALSE en caso contrario.