Skip to main content
.NET 8.0+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IAppearanceVisibility.Visibility Property

Specifies the user interface element visibility.

Namespace: DevExpress.ExpressApp.Editors

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

ViewItemVisibility Visibility { get; set; }

#Property Value

Type Description
ViewItemVisibility

A ViewItemVisibility enumeration value specifying the user interface element visibility.

Available values:

Name Description
Hide

Specifies that UI elements affected by a conditional appearance rule are hidden, and the Detail View’s layout is rearranged.

ShowEmptySpace

Specifies that empty space is displayed instead of UI elements affected by a conditional appearance rule, when AppearanceAttribute.AppearanceItemType is set to ViewItem or LayoutItem. In XAF ASP.NET Web Forms and Blazor applications, this mode functions like the ViewItemVisibility.Hide mode.

Show

Specifies that UI elements affected by a conditional appearance rule remain visible (has effect in List View only).

#Remarks

The UI elements that implement the IAppearanceVisibility interface can be made invisible/visible by the AppearanceController according to conditional appearance rules. The visibility state is changed via the Visibility property.

See Also