Skip to main content

RepositoryItemSearchLookUpEdit.TextEditStyle Property

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

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

public override TextEditStyles TextEditStyle { get; set; }

Property Value

Type Default Description
TextEditStyles DisableTextEditor

A 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 cannot be set to TextEditStyles.Standard for the SearchLookUpEdit control

See Also