DashboardViewer.DashboardItemMaximizedStateChanged Event
Fires when an item becomes maximized or restores its original size.
Namespace: DevExpress.DashboardWin
Assembly: DevExpress.Dashboard.v24.1.Win.dll
NuGet Package: DevExpress.Win.Dashboard
Declaration
public event DashboardItemMaximizedStateChangedEventHandler DashboardItemMaximizedStateChanged
Event Data
The DashboardItemMaximizedStateChanged event's data class is DashboardItemMaximizedStateChangedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
DashboardItemName | Gets the component name of the maximized or restored dashboard item. |
IsMaximized | Indicates whether the item is maximized or restored to its original size. |
Remarks
The e.DashboardItemName property value is the component name of the dashboard item whose state changes. If the e.IsMaximized is true, the action is Maximize; otherwise, the action is Restore.
Implements
See Also