own_help property

FormField.own_help property

Specifies the source of the text that’s displayed in a message box when a form field has the focus and the user presses F1.

@property
def own_help(self) -> bool:
    ...

@own_help.setter
def own_help(self, value: bool):
    ...

Remarks

If True, the text specified by the FormField.help_text property is displayed. If False, the text in the AutoText entry specified by the FormField.help_text property is displayed.

See Also