property Grid.AllowCopyPaste as AllowCopyPasteEnum
Determines whether the control automatically handles Copy (CTRL + C), Cut (CTRL + X), and Paste(CTRL + V) operations.

TypeDescription
AllowCopyPasteEnum An AllowCopyPasteEnum expression defines the Copy, Cut, and Paste operations that the control supports. This expression is a combination of values from the AllowCopyPasteEnum enumeration, allowing fine-grained control over clipboard operations.
By default, the The AllowCopyPaste property is exNoCopyPaste (all copy, cut, and paste operations are disabled). The AllowCopyPaste property specifies whether the control automatically handles Copy (CTRL + C), Cut (CTRL + X), and Paste(CTRL + V) operations. 

Keyboard Shortcuts:

You can use any of the following methods to programmatically perform Copy, Cut, or Paste operations on the selected items:

For example:

This flexible approach allows developers to configure clipboard functionality based on their specific needs.