wpf-devexpress-dot-xpf-dot-pivotgrid-dot-pivotgridfieldvaluemenuinfo.md
Namespace : DevExpress.Xpf.PivotGrid
Assembly : DevExpress.Xpf.PivotGrid.v25.2.dll
NuGet Package : DevExpress.Wpf.PivotGrid
public FieldValueElementData FieldValueElementData { get; }
Public ReadOnly Property FieldValueElementData As FieldValueElementData
| Type |
|---|
| FieldValueElementData |
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the FieldValueElementData property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
PivotGridFieldValueMenuInfo menuInfo = pivotGrid.GridMenu.MenuInfo as PivotGridFieldValueMenuInfo;
if (menuInfo != null && menuInfo.FieldValueElementData != null &&
menuInfo.FieldValueElementData.Value != null)
Dim menuInfo As PivotGridFieldValueMenuInfo = TryCast(Me.pivotGrid.GridMenu.MenuInfo, PivotGridFieldValueMenuInfo)
If menuInfo IsNot Nothing AndAlso menuInfo.FieldValueElementData IsNot Nothing AndAlso menuInfo.FieldValueElementData.Value IsNot Nothing Then
Clipboard.SetDataObject(menuInfo.FieldValueElementData.Value)
See Also
PivotGridFieldValueMenuInfo Class