Version

ClipboardCellDelimiter Property

Returns or sets the string used to wrap a cell/label value when copied to the clipboard.
Syntax
'Declaration
 
Public Property ClipboardCellDelimiter As String
public string ClipboardCellDelimiter {get; set;}
Example
The following sample demonstrates setting the Clipboard Cell/Record separator/delimiters to control the strings used when creating the text format for the clipboard.

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

<igDP:XamDataGrid x:Name="grid"
    
BindToSampleData="True"
    
ClipboardCellDelimiter="&quot;"
    
ClipboardCellSeparator=","
    
ClipboardRecordSeparator="&#xd;&#xa;">
    
<igDP:XamDataGrid.FieldLayoutSettings>
        
<igDP:FieldLayoutSettings AllowClipboardOperations="Copy" />
    
</igDP:XamDataGrid.FieldLayoutSettings>
    
    
<igDP:XamDataGrid.FieldSettings>
        
<igDP:FieldSettings CellClickAction="SelectCell" />
    
</igDP:XamDataGrid.FieldSettings>
</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