TcxGridFixedDataRowsOptions.PinClickAction Property
Specifies the action associated with a click on a data row pin.
Declaration
property PinClickAction: TcxGridDataRowPinClickAction read; write; default rpcaShowPopup;
Property Value
| Type | Default | Description |
|---|---|---|
| TcxGridDataRowPinClickAction | rpcaShowPopup | The row pin click action. |
Remarks
Users can click visible 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 PinClickAction property to change the command executed when a user clicks a row pin.
Available Options
- rpcaShowPopup
- Default. A click on a row pin displays a context menu with a list of commands that depend on the target row position.
- rpcaNone
- No command is associated with row pins. This option hides all row pins within the scrollable grid View area.
- rpcaFixToTop
- A click on a row pin within the scrollable grid View area pins the corresponding row at the top border. A click on a fixed row’s pin returns the target row to the original position within the scrollable area.
- rpcaFixToBottom
- A click on a row pin within the scrollable grid View area pins the corresponding row at the bottom border. A click on a fixed row’s pin returns the target row to the original position within the scrollable area.
Default Value
The PinClickAction property’s default value is rpcaShowPopup.
See Also