Class DashboardChangedEventArgs

Argument object passed to DashboardChanged event.

Inheritance
System.Object
System.EventArgs
DashboardChangedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Reveal.Sdk
Assembly: Reveal.UI.Sdk.dll
Syntax
public class DashboardChangedEventArgs : EventArgs

Constructors

DashboardChangedEventArgs(RVDashboard, RVDashboard)

Initializes a new instance of the DashboardChangedEventArgs class.

Declaration
public DashboardChangedEventArgs(RVDashboard oldValue, RVDashboard newValue)
Parameters
Type Name Description
RVDashboard oldValue

The dashboard that is being replaced.

RVDashboard newValue

The new dashboard that is replacing the old one.

Properties

NewValue

Gets the new dashboard that is replacing the old one.

Declaration
public RVDashboard NewValue { get; }
Property Value
Type Description
RVDashboard

OldValue

Gets the dashboard that is being replaced.

Declaration
public RVDashboard OldValue { get; }
Property Value
Type Description
RVDashboard