TcxGridFixedDataRowsOptions.PinVisibility Property
Specifies the row pin display mode.
Declaration
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
.
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:
- The GridView.OptionsCustomize.DataRowFixing property is set to
False
(default). - The PinClickAction property is set to rpcaNone (default).
Default Value
The PinVisibility
property’s default value is rpvNever.
See Also