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#
public UITypeEditor Editor { get; }
Visual Basic
Public ReadOnly Property Editor As UITypeEditor
	Get
Visual C++
public:
virtual property UITypeEditor^ Editor {
	UITypeEditor^ get () sealed;
}
F#
abstract Editor : UITypeEditor with get
override Editor : UITypeEditor with get

Property Value

Type: UITypeEditor
The editor if exists. Otherwise null.

Implements

IDataField..::..Editor

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