Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the EditorName property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also