xInfo.formNoteButton Method [AX 2012]

Controls the Document handling button on the toolbar.

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.

The following example shows how to disable the Document handling button.

void disableNoteButton() 
    { 
        infolog.formNoteButton(false, false); 
    }

Community Additions

ADD
Show: