Version

ClipboardRecordSeparator Property

Returns or sets the strings used to separate the values of cells from different records when copied to the clipboard.
Syntax
'Declaration
 
Public Property ClipboardRecordSeparator As String
public string ClipboardRecordSeparator {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