Skip to main content

TcxCustomGridTableOptionsBehavior.CopyRecordsToClipboard Property

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

Declaration

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