SetValueAsEditBoxOptions Enum

Definition

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

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.

DeleteContent 256

Ensure that the EditBox is empty before you set the value.

DoNotVerify 8192

Do not verify the final value.

None 0

Use the default.

UseCopyPaste 2048

Use the clipboard to set the value in text by using CTRL+{Insert} to paste the value into the EditBox.

UseProgrammatic 512

Set the value programmatically.

UseSendKeys 4096

Use EditBox to set the value of the EditBox.

UseWindowMessage 1024

Use Windows message WM_SETTEXT to set the value of the EditBox. This can only be used with windowed controls.

Applies to