Skip to main content
A newer version of this page is available. .

RepositoryItemButtonEdit.TextEditStyle Property

Gets or sets the style in which text is displayed and edited in the button editor.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v18.2.dll

Declaration

[DXCategory("Behavior")]
[DefaultValue(TextEditStyles.Standard)]
[SmartTagProperty("Text Edit Style", "Editor Style", SmartTagActionType.RefreshAfterExecute)]
public virtual TextEditStyles TextEditStyle { get; set; }

Property Value

Type Default Description
TextEditStyles **Standard**

The TextEditStyles value determining the editing style.

Available values:

Name Description
Standard

A button editor works in its normal way. Editing and selecting text is allowed.

ButtonEdit_TextEditStyle_Standard

HideTextEditor

The text editing region is not visible and the editor displays only buttons contained in the current button editor. If no buttons can be displayed (for instance because of setting the EditorButton.Visible property to False), the editor displays an empty region in this case.

ButtonEdit_TextEditStyle_Hidetexteditor

DisableTextEditor

A button editor is displayed in its normal way. However, editing and selecting text is not allowed. If you want to enable a user to select text but disable text modifications, you can set the text editing style to Standard and set the RepositoryItem.ReadOnly property to true.

ButtonEdit_TextEditStyle_Disable

Remarks

The TextEditStyle property allows you to control the manner in which text and buttons are displayed within the button editor and in which text is edited. Possible values are enumerated by the TextEditStyles type. It is possible to specify the following edit styles:

  • Standard. A button editor works in its normal way. Editing and selecting text is allowed.

    ButtonEdit_TextEditStyle_Standard

  • HideTextEditor. The text editing region is not visible and the editor displays only buttons contained in the RepositoryItemButtonEdit.Buttons property. If no buttons are visible, the editor displays an empty region in this case.

    ButtonEdit_TextEditStyle_Hidetexteditor

  • DisableTextEditor. A button editor is displayed in its normal way. However, editing and selecting text is not allowed. For popup editors, the text can be changed by selecting a value from the dropdown window. If you want to enable a user to select text but disable text modifications, you can consider using the RepositoryItem.ReadOnly property instead.

    ButtonEdit_TextEditStyle_Disable

The following code snippets (auto-collected from DevExpress Examples) contain references to the TextEditStyle 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