UITypeEditorEditStyle Enum

Definition

Specifies identifiers that indicate the value editing style of a UITypeEditor.

C#
public enum UITypeEditorEditStyle
Inheritance
UITypeEditorEditStyle

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.

C#
public override UITypeEditorEditStyle GetEditStyle(
System.ComponentModel.ITypeDescriptorContext context)
{
    return UITypeEditorEditStyle.DropDown;
}

Applies to

Proizvod Verzije
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also