Skip to main content

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

LayoutViewColumn.Visible Property

Gets or sets whether the card field is visible.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v24.2.dll

#Declaration

[DefaultValue(false)]
[DXCategory("Appearance")]
public override bool Visible { get; set; }

#Property Value

Type Default Description
Boolean false

true if the card field is visible; otherwise. false.

#Remarks

If a card field has been initially hidden, setting the Visible property to true displays the card field at the bottom of the card. To display a card field at a specific position, use the BaseLayoutItem.Move method of a corresponding LayoutViewField object (this object can be accessed via the LayoutViewColumn.LayoutViewField property).

If a card field was displayed at a specific position and then hidden, setting the Visible property to true restores the card field at its previous visual position.

See Also