Selects all content in the currently opened document. Use theVAPIMWP_EDIT_CANSELECTALL message to determine whether you can select all content in the document. This is a parameter of the VAPIM_EDIT
message.
#include <kvvapi.h> SendMessage(g_hWndFocus, VAPIM_EDIT, VAPIMWP_EDIT_SELECTALL, 0L );
Argument |
Description |
---|---|
|
The handle of the VAPI window. |
|
|
|
|
|
Not used, set to |
SendMessage()
returns TRUE
if the selection succeeded; FALSE
otherwise.
Use this message to implement a Select All menu item or toolbar button.
|