UITypeEditorEditStyle 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.
Specifies identifiers that indicate the value editing style of a UITypeEditor.
public enum class UITypeEditorEditStyle
public enum UITypeEditorEditStyle
type UITypeEditorEditStyle =
Public Enum UITypeEditorEditStyle
- Inheritance
Fields
Name | Value | Description |
---|---|---|
None | 1 | Provides no interactive user interface (UI) component. |
Modal | 2 | Displays an ellipsis (...) button to start a modal dialog box, which requires user input before continuing a program, or a modeless dialog box, which stays on the screen and is available for use at any time but permits other user activities. |
DropDown | 3 | Displays a drop-down arrow button and hosts the user interface (UI) in a drop-down dialog box. |
Examples
The following code example demonstrates how to use UITypeEditorEditStyle to specify the style of a custom UITypeEditor. This code example is part of a larger example provided for the DocumentDesigner class.
public override UITypeEditorEditStyle GetEditStyle(
System.ComponentModel.ITypeDescriptorContext context)
{
return UITypeEditorEditStyle.DropDown;
}
Public Overrides Function GetEditStyle( _
ByVal context As System.ComponentModel.ITypeDescriptorContext) _
As UITypeEditorEditStyle
Return UITypeEditorEditStyle.DropDown
End Function