[]
Used by DropDownForm.Options property.
[Flags]
[TypeConverter(typeof(DropDownOptionsConverter))]
public enum DropDownFormOptionsFlags
Name | Description |
---|---|
AlwaysPostChanges | If this flag is set, the changes to the control Value can only be cancelled explicitly, with Esc key or using the CloseDropDown method, and implicit cancellation (when the form is closed because it loses focus) is disabled. |
AutoResize | If set, the dropdown form width is automatically adjusted to the width of the owner control before the form is shown. |
FixedHeight | The end users are not allowed to change the height of the dropdown form resizing it. |
FixedSize | = FixedWidth + FixedHeight |
FixedWidth | The end users are not allowed to change the width of the dropdown form resizing it. |
Focusable | Indicates that DropDownForm can contain focus. |
NoCancelOnEscape | If this flag is set, pressing the Esc key does not close the form. |
NoPostOnEnter | If this flag is set, pressing the Enter key does not close the form. |
None | Indicates that none of the options are set. |