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

BaseEditSettings.NullText Property

Gets or sets the text displayed within the edit box when the editor’s value is null. This is a dependency property.

Namespace: DevExpress.Xpf.Editors.Settings

Assembly: DevExpress.Xpf.Core.v19.1.dll

Declaration

public string NullText { get; set; }

Property Value

Type Description
String

A String value that specifies the string displayed within the edit box when the BaseEdit.EditValue property is set to null or Value value.

Property Paths

You can access this nested property as listed below:

Object Type Path to NullText
BarEditItem
.EditSettings.NullText
FilterField
.EditSettings.NullText
TokenEditorBehavior
GanttColumn
.EditSettings.NullText
ColumnBase
.EditSettings.NullText
GridColumn
.EditSettings.NullText
TreeListColumn
.EditSettings.NullText
CollectionDefinition
.EditSettings.NullText
PropertyDefinition
.EditSettings.NullText
SpreadsheetCustomCellEditEventArgs
.EditSettings.NullText

Remarks

The BaseEditSettings.NullValue property allows you to specify a null value for the editor, in addition to null and DBNull values. To specify the text displayed within the edit box when the editor’s value is null, use the NullText property.

See Also