Skip to main content
A newer version of this page is available. .

PivotGridOptionsBehaviorBase.CopyToClipboardWithFieldValues Property

Gets or sets whether field values are copied to the Clipboard when CTRL+C is pressed or the PivotGridCells.CopySelectionToClipboard method is called.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v18.2.Core.dll

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public bool CopyToClipboardWithFieldValues { get; set; }

Property Value

Type Default Description
Boolean **false**

true if field values are copied to the Clipboard when CTRL+C is pressed or the PivotGridCells.CopySelectionToClipboard method is called; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to CopyToClipboardWithFieldValues
WinForms Controls PivotGridControl
.OptionsBehavior.CopyToClipboardWithFieldValues
ASP.NET Controls and MVC Extensions ASPxPivotGrid
.OptionsBehavior.CopyToClipboardWithFieldValues
MVCxPivotGrid
.OptionsBehavior.CopyToClipboardWithFieldValues
PivotGridSettings
.OptionsBehavior.CopyToClipboardWithFieldValues
Reporting XRPivotGrid
.OptionsBehavior.CopyToClipboardWithFieldValues

Remarks

Data displayed within selected cells can be copied to the Clipboard. End-users can only copy the text displayed within selected cells using CTRL+C or CTRL+INS. If the CopyToClipboardWithFieldValues property is set to true, cell values are copied to the Clipboard along with corresponding field values.

Use the PivotGridOptionsBehaviorBase.ClipboardCopyCollapsedValuesMode property to specify how to copy collapsed field values.

See Also