The GetLayoutOptionBool method retrieves an option of boolean type for a layout object
HRESULT GetLayoutOptionBool(
[in, string] LPCWSTR p_pwsObjectId,
[in, string] LPCWSTR p_pwsLayoutId,
[in] LONG p_nOption,
[out] BOOL* p_pbValue
);
Parameters:
p_pwsObjectId
[in] object id (watermark text, watermark image, overlay, signature or content)
p_pwsLayoutId
[in] layout id (obtained with [GetLayout](getlayout-help.html) )
p_nOption
[in] option constant
p_pbValue
[out] will contain the value of the retrieved option
Return values:
S_OK
on success or COM error codeNV_NOT_INITIALIZED
- Initialize was not calledNV_UNKNOWN_PROFILE
- no profile loadedNV_INVALID_OPTION
- wrong option constantNV_PROFILE_ERROR
- cannot find option in profileNV_WRONG_OPTION_TYPE
- option is not of type longRemarks:
You can find the complete list of option names in the Profile option strings chapter. In the Include folder of novaPDF SDK installation folder you can find the definitions for all options in the next files: novaOptions.h, novaOptions.pas, Globals.bas.
For layout options, see Working with Layout objects.