Class MenuOpeningEventArgs
The type of the event arguments of the MenuOpening event.
Inheritance
System.Object
MenuOpeningEventArgs
Namespace: Reveal.Sdk
Assembly: Reveal.UI.Sdk.dll
Syntax
public class MenuOpeningEventArgs : CancelEventArgs
Properties
IsInEditMode
Flag used to determine if the dashboard or visualization opening a menu is currently in edit mode.
Declaration
public bool IsInEditMode { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
MenuItems
Collection of menu items that are used to display a popup menu over the dashboard or visualization.
Declaration
public List<RVMenuItemBase> MenuItems { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<RVMenuItemBase> |
MenuLocation
Location where the menu was requested to show, either from the dashboard or visualization.
Declaration
public RVMenuLocation MenuLocation { get; }
Property Value
Type | Description |
---|---|
RVMenuLocation |
Visualization
The visualization opening a menu
Declaration
public RVVisualization Visualization { get; set; }
Property Value
Type | Description |
---|---|
RVVisualization |