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

TcxGridDataRowPinClickAction Enum

Enumerates actions associated with a click on a row pin.

#Declaration

Delphi
TcxGridDataRowPinClickAction = (
    rpcaNone,
    rpcaFixToTop,
    rpcaFixToBottom,
    rpcaShowPopup
);

#Members

Name Description
rpcaNone

All row pins in the scrollable grid View area are hidden.

Fixed rows display their pins if the parent grid View’s FixedDataRows.PinVisibility property is set to rpvAlways rpvHotTrack, or rpvRowHotTrack.

rpcaFixToTop

A click on a row pin within the scrollable grid View area adds that row to the top fixed row area.

A click on a row pin within a top or bottom fixed row area returns the corresponding row to the original position in the scrollable grid View area.

rpcaFixToBottom

A click on a row pin within the scrollable grid View area adds that row to the bottom fixed row area.

A click on a row pin within a top or bottom fixed row area returns the corresponding row to the original position in the scrollable grid View area.

rpcaShowPopup

Default. A click on a row pin displays a context menu. The list of menu items depends on the target row position:

  • Fix to Top and Fix to Bottom commands are available for a row in the scrollable grid View area.
  • Fix to Bottom and Unfix commands are available for a row in the top fixed row area.
  • Fix to Top and Unfix commands are available for a row in the bottom fixed row area.

#Remarks

Different TcxGridDataRowPinClickAction values correspond to different commands executed when a user clicks a row pin. Row pins are visible only when the following conditions are met:

#Direct TcxGridDataRowPinClickAction Type Reference

The TcxGridFixedDataRowsOptions.PinClickAction property references the TcxGridDataRowPinClickAction type.

See Also