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.PinClickAction Property

Specifies the action associated with a click on a data row pin.

#Declaration

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

VCL Data Grid: Fixed Data Rows

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