Version

AllowClipboardOperations Enumeration

Enumeration used to indicate which clipboard operations are allowed to be performed by the end user.
Syntax
'Declaration
 
Public Enum AllowClipboardOperations 
   Inherits System.Enum
public enum AllowClipboardOperations : System.Enum 
Members
MemberDescription
AllAll operations are allowed.
ClearContentsThe values of one or more cells can be removed
CopyThe values of cells may be copied to the clipboard
CutThe values of cells may be removed and placed on the clipboard
NoneNo operations are allowed.
PasteInformation on the clipboard may be used to change the values of one or more cells. Note, this functionality requires use of the Clipboard class which requires UIPermissions of AllClipboard in order to read from the clipboard.
Example
The following sample demonstrates how to enable the clipboard functionality. It also sets the CopyFieldLabelsToClipboard to false to prevent the labels from being included in the output.

xmlns:igDP="http://infragistics.com/DataPresenter"

<igDP:XamDataGrid x:Name="grid"
    
BindToSampleData="True"
    
IsUndoEnabled="True"
    
UndoLimit="100">
    
<igDP:XamDataGrid.FieldLayoutSettings>
        
<igDP:FieldLayoutSettings 
            
AllowClipboardOperations="All"
            
CopyFieldLabelsToClipboard="False" />
    
</igDP:XamDataGrid.FieldLayoutSettings>
</igDP:XamDataGrid>
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also