バージョン

AllowClipboardOperations プロパティ

実行できるクリップボード操作を取得または設定します。
シンタックス
'宣言
 
Public Property AllowClipboardOperations As Nullable(Of AllowClipboardOperations)
public Nullable<AllowClipboardOperations> AllowClipboardOperations {get; set;}
解説

このプロパティは、DataPresenter でエンド ユーザーによって選択されているレコードまたはセルで実行できるクリップボード操作を決定します。

: この操作は、編集モードのエディターで実行または許可するクリップボード操作とは関係ありません。例えば、このプロパティの値は、編集モードで値を XamTextEditor からクリップボードにコピーできるかどうかとは関係がありません。更に、DataPresenter のクリップボード操作は、セルが編集モードにあるときに発生されません。

使用例
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>
参照