Determines whether you can select all items in the document. If lpbCanSelectAll
is TRUE
, you can select all items in the document by using the VAPIMWP_EDIT_SELECTALL message. This is a parameter of the VAPIM_EDIT
message.
#include <kvvapi.h> SendMessage(hWndVAPI, VAPIM_EDIT, VAPIMWP_EDIT_CANSELECTALL, (LPARAM) (BOOL*) lpbCanSelectAll );
Argument |
Description |
---|---|
|
The handle of the VAPI window. |
|
A pointer to a flag that returns |
SendMessage()
returns TRUE
if the call succeeds, in which case lpbCanSelectAll
returns TRUE
or FALSE
.
SendMessage()
returns FALSE
if the call fails (for example, if there are invalid arguments or if no document is open), in which case lpbCanSelectAll
is undefined.
Use this message to control the state of a Select All menu item or toolbar button.
|