Skip to main content
All docs
V25.1
  • .NET Framework 4.6.2+

    IModelCommonMemberViewItem.NullText Property

    Specifies the text that a Property Editor displays when its value is null or String.Empty. WinForms Property Editors also show this text if their value is DBNull.Value

    Namespace: DevExpress.ExpressApp.Model

    Assembly: DevExpress.ExpressApp.v25.1.dll

    NuGet Package: DevExpress.ExpressApp

    Declaration

    [ModelBrowsable(typeof(NullTextVisibilityCalculator))]
    string NullText { get; set; }

    Property Value

    Type Description
    String

    A text that a Property Editor displays when its value is null, String.Empty, or DBNull.Value (WinForms only).

    Remarks

    The following Model Editor nodes allow you to specify this property:

    • Views | <DetailView> | Items | <ViewItem>
      Null text in Model Editor
    • BOModel | <Class> | OwnMembers | <Member>
      Null text in Model Editor

    The following image illustrates the result.

    Null text in Editor

    Note

    You can also set the PropertyEditor.NullText property in code. Refer to its description to see an example.

    See Also