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

IAppearanceVisibility.Visibility Property

Specifies the user interface element visibility.

Namespace: DevExpress.ExpressApp.Editors

Assembly: DevExpress.ExpressApp.v18.2.dll

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 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