enabled property

FormField.enabled property

True if a form field is enabled.

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

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

Remarks

If a form field is enabled, its contents can be changed as the form is filled in.

See Also