Gets the editor to edit values of this IDataField at design or run time.

Namespace: Dapfor.Net.Data
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
UITypeEditor Editor { get; }
Visual Basic
ReadOnly Property Editor As UITypeEditor
	Get
Visual C++
property UITypeEditor^ Editor {
	UITypeEditor^ get ();
}
F#
abstract Editor : UITypeEditor with get

Property Value

Type: UITypeEditor
The editor if exists. Otherwise null.

Remarks

The System.ComponentModel provides two types of editors. Dialog-based that is shown as a modal or non-modal Form and ones, shown in a drop down control. It is possible to declare a custom editor by using EditorAttribute.

See Also