Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Controls the Document handling button on the toolbar.
Syntax
public void formNoteButton(boolean enable, boolean value)
Run On
Called
Parameters
- enable
Type: boolean
A Boolean data type that indicates whether the icon is enabled.
- value
Type: boolean
A Boolean data type that indicates the appearance of the icon.
Examples
The following example shows how to disable the Document handling button.
void disableNoteButton()
{
infolog.formNoteButton(false, false);
}