xInfo.formNoteButton(Boolean, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Controls the Document handling button on the toolbar.
public:
virtual void formNoteButton(bool _enable, bool _value);
public virtual void formNoteButton (bool _enable, bool _value);
abstract member formNoteButton : bool * bool -> unit
override this.formNoteButton : bool * bool -> unit
Public Overridable Sub formNoteButton (_enable As Boolean, _value As Boolean)
Parameters
- _enable
- Boolean
A Boolean data type that indicates the appearance of the icon.
- _value
- Boolean
A Boolean data type that indicates the appearance of the icon.
Remarks
The following example shows how to disable the Document handling button.
void disableNoteButton()
{
infolog.formNoteButton(false, false);
}