Skip to main content

TextEditOptions.EditorName Property

Specifies the name of an editor used to change a control’s content in Print Preview.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v23.1.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

[DefaultValue("")]
public string EditorName { get; set; }

Property Value

Type Default Description
String String.Empty

A string that specifies the editor name.

Property Paths

You can access this nested property as listed below:

Object Type Path to EditorName
XRLabel
.EditOptions .EditorName

Remarks

If a control’s EditOptions.Enabled property is set to true and the EditOptions.ReadOnly option is disabled, its content can be changed in Print Preview using an in-place editor invoked after clicking the corresponding field.

By default, the EditorName property is not specified, and a memo edit is used as a standard editor.

Use the EditorName property to assign a required editor to a control. All available editors are listed by the EditingFieldEditorNames class and are divided into three categories: Numeric, Date-Time and Letters.

EditOptions_EditorName

If required, you can implement custom editors and add them to an existing or custom category.

For more information, see Content Editing in Print Preview.

See Also