Skip to main content

RepositoryItemHypertextLabel.ShowNullValuePrompt Property

For internal use.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
public ShowNullValuePromptOptions ShowNullValuePrompt { get; set; }

Property Value

Type
ShowNullValuePromptOptions

Available values:

Name Description
NullValue

Disables all options. A prompt is only shown for an editable, not focused editor whose value equals null (Nothing in VB).

EmptyValue

A prompt is displayed when the editor’s value equals String.Empty or null (Nothing in VB). Disable this option to only display the prompt when the editor’s value equals null (Nothing in VB).

EditorFocused

A prompt is displayed when the editor is focused and not focused. Disable this option to only display the prompt when the editor is not focused.

EditorReadOnly

A prompt is displayed when the editor is in the read-only and editable states. Disable this option to only display the prompt when the editor is editable.

Default

Enables all options.

See Also