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

TcxGridFixedDataRowsOptions.PinVisibility Property

Specifies the row pin display mode.

#Declaration

Delphi
property PinVisibility: TcxGridDataRowPinVisibility read; write; default rpvNever;

#Property Value

Type Default Description
TcxGridDataRowPinVisibility rpvNever

Active row pin visibility mode.

#Remarks

Users can click row pins to exclude corresponding rows from scrollable content of a grid View and pin them at the top or bottom border of the View area if the GridView.OptionsCustomize.DataRowFixing property is set to True.

VCL Data Grid: Fixed Data Rows

Use the PinVisibility property to specify the visibility condition for data row pins.

#Available Options

rpvNever
Default. The grid View never displays row pins.
rpvAlways
All row pins are always visible.
rpvHotTrack
A row pin is visible only when a user hovers the mouse pointer over the pin area within a data row.
rpvRowHotTrack
A row pin is visible only when a user hovers the mouse pointer over the corresponding data row.

#Limitations

All row pins are hidden, and the PinVisibility property has no effect on pin visibility if one of the following conditions is met:

#Default Value

The PinVisibility property’s default value is rpvNever.

See Also