In This Article

PartEditBoxCommitTriggers Enum

Specifies the triggers that force a PartEditBoxBase-derived control to immediately commit any changes.

[Flags]
public enum PartEditBoxCommitTriggers

Fields

Name Description
ActivePartChange

Indicates that changes will be committed when the active part changes.

All

Indicates that changes will be always be committed immediately.

Default

Indicates that changes made using an associated Spinner will be committed immediately. Other changes will only be committed when the control loses focus or when the Enter key is pressed. This is the same as EnterKeyDown | SpinnerChange | LostFocus.

EnterKeyDown

Indicates that changes made will be committed when the Enter key is pressed.

LostFocus

Indicates that changes will be committed when the control loses focus.

Manual

Indicates that changes will only be committed when the Commit() method is manually invoked.

SpinnerChange

Indicates that changes made using an associated Spinner will be committed immediately.

StringValueChange

Indicates that changes will be committed immediately when typing and other text edits occur.