SetValueAsEditBoxOptions Enum
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.
Represents the flag values for configuring how to set the value of an EditBox.
This enumeration supports a bitwise combination of its member values.
public enum class SetValueAsEditBoxOptions
[System.Flags]
public enum SetValueAsEditBoxOptions
[<System.Flags>]
type SetValueAsEditBoxOptions =
Public Enum SetValueAsEditBoxOptions
- Inheritance
-
SetValueAsEditBoxOptions
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Use the default. |
DeleteContent | 256 | Ensure that the EditBox is empty before you set the value. |
UseProgrammatic | 512 | Set the value programmatically. |
UseWindowMessage | 1024 | Use Windows message WM_SETTEXT to set the value of the EditBox. This can only be used with windowed controls. |
UseCopyPaste | 2048 | Use the clipboard to set the value in text by using CTRL+{Insert} to paste the value into the EditBox. |
UseSendKeys | 4096 | Use EditBox to set the value of the EditBox. |
DoNotVerify | 8192 | Do not verify the final value. |
All | 16128 | Because EditBox can use a mix of values from this enumeration and SetValueAsComboBoxOptions, this option helps by removing only SetValueAsComboBoxOptions values from the option. |