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

TcxCustomGridTableOptionsBehavior.CopyRecordsToClipboard Property

Enables end-users to copy the View content to the clipboard as text.

#Declaration

Delphi
property CopyRecordsToClipboard: Boolean read; write; default True;

#Property Value

Type Default
Boolean True

#Remarks

Set this property to True to allow end-users to copy the View content by pressing the Ctrl+C or Ctrl+Ins key combination. Otherwise, these key combinations do nothing and the View content can only be copied programmatically.

Copying the View content using the key combinations described above is equivalent to calling the View’s CopyToClipboard method with False passed as the method parameter. Refer to the method description to learn about copy operation specifics.

Note

Content copying with the key combinations is disabled if a cell in the View is currently being edited using an in-place editor. In this instance, the View routes the keystrokes to the cell in-place editor.

The default value of the CopyRecordsToClipboard property is True.

See Also