dashboard-devexpress-dot-dashboardwpf-dot-dashboarditemmousewpfeventargs.md
Gets the name of the dashboard item.
Namespace : DevExpress.DashboardWpf
Assembly : DevExpress.Dashboard.v25.2.Wpf.dll
NuGet Package : DevExpress.Wpf.Dashboard
public string DashboardItemName { get; }
Public ReadOnly Property DashboardItemName As String
| Type | Description |
|---|---|
| String |
A String that is the name of the dashboard item.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the DashboardItemName 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.
{
if (e.DashboardItemName == "cardDashboardItem1" & e.GetAxisPoint() != null)
{
{
if (e.DashboardItemName != null)
{
Private Sub DashboardControl_DashboardItemMouseUp(ByVal sender As Object, ByVal e As DevExpress.DashboardWpf.DashboardItemMouseActionWpfEventArgs)
If Equals(e.DashboardItemName, "cardDashboardItem1") And e.GetAxisPoint() IsNot Nothing Then
' Obtains client data related to the clicked card.
Private Sub DashboardControl_DashboardItemMouseMove(ByVal sender As Object, ByVal e As DashboardItemMouseActionWpfEventArgs)
If Not Equals(e.DashboardItemName, Nothing) Then
Dim underlyingData As DashboardUnderlyingDataSet = e.GetUnderlyingData()
See Also
DashboardItemMouseWpfEventArgs Class