Gets the document options. Document options control display elements such as window size, zoom settings, margin size, scaling, and revision tracking information. Options are defined for each file type category (for example, spreadsheets, multimedia, and word processing). This is a parameter of the VAPIM_OPTIONS
message. See Change Document Options.
#include <kvvapi.h> #include <kwoption.h> SendMessage(hWndVAPI, VAPIM_OPTIONS, VAPIMWP_OPTIONS_GETOPTIONS_EX, (LPARAM) (ALL_OPTIONS_EX*) lpAllOptions );
Argument |
Description |
---|---|
|
The handle of the VAPI window. |
|
A pointer to an ALL_OPTIONS_EX structure that returns the document options. |
SendMessage()
returns TRUE
if the call succeeds, in which case lpAllOptions
returns the options.
SendMessage()
returns FALSE if the call fails (for example, if there are invalid arguments or if no document is open), in which case lpAllOptions
is undefined.
Use this message to get the options for the document. Only the options for the current document type are returned, not those for all document types.
|