Back to Devexpress

DrillActionEventArgs.Values Property

dashboard-devexpress-dot-dashboardcommon-dot-drillactioneventargs-452cd7f4.md

latest2.6 KB
Original Source

DrillActionEventArgs.Values Property

Gets values from the current drill-down hierarchy.

Namespace : DevExpress.DashboardCommon

Assembly : DevExpress.Dashboard.v25.2.Core.dll

NuGet Package : DevExpress.Dashboard.Core

Declaration

csharp
public DashboardDataSet Values { get; }
vb
Public ReadOnly Property Values As DashboardDataSet

Property Value

TypeDescription
DashboardDataSet

A DashboardDataSet object that holds values from the current drill-down hierarchy.

|

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Values 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.

wpf-dashboard-linked-interactivity/CS/WpfDashboard_LinkedInteractivity/ChildWindow.xaml.cs#L63

csharp
string itemName = e.DashboardItemName;
DashboardDataRow row = e.Values[0];
object value = row[row.Length - 1];

wpf-dashboard-linked-interactivity/VB/WpfDashboard_LinkedInteractivity/ChildWindow.xaml.vb#L56

vb
Dim itemName As String = e.DashboardItemName
Dim row As DashboardDataRow = e.Values(0)
Dim value As Object = row(row.Length - 1)

See Also

DrillActionEventArgs Class

DrillActionEventArgs Members

DevExpress.DashboardCommon Namespace