wpf-devexpress-dot-xpf-dot-pivotgrid-dot-fieldvalueelementdata-b132c730.md
Namespace : DevExpress.Xpf.PivotGrid
Assembly : DevExpress.Xpf.PivotGrid.v25.2.dll
NuGet Package : DevExpress.Wpf.PivotGrid
public bool IsColumn { get; }
Public ReadOnly Property IsColumn As Boolean
| Type |
|---|
| Boolean |
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the IsColumn 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.
{
string itemCaption = string.Format("Top 5 Values in this {0}", valueItem.IsColumn ? "Column" : "Row");
BarCheckItem item = new BarCheckItem { Content = itemCaption };
If valueItem.IsLastLevelItem Then
Dim itemCaption As String = String.Format("Top 5 Values in this {0}",If(valueItem.IsColumn, "Column", "Row"))
Dim item As BarCheckItem = New BarCheckItem With {.Content = itemCaption}
See Also