Class IPaletteSelectionChangeArgs
IPaletteSelectionChangeArgs notifies when the selection objects change in the symbol palette
Inheritance
System.Object
IPaletteSelectionChangeArgs
Implements
System.IEquatable<IPaletteSelectionChangeArgs>
Namespace: Syncfusion.Blazor.Diagrams
Assembly: Syncfusion.Blazor.dll
Syntax
public class IPaletteSelectionChangeArgs : Object, IEquatable<IPaletteSelectionChangeArgs>
Constructors
IPaletteSelectionChangeArgs()
Declaration
public IPaletteSelectionChangeArgs()
Properties
NewValue
returns the new palette item that is selected
Declaration
public string NewValue { get; set; }
Property Value
Type | Description |
---|---|
System.String |
OldValue
returns the old palette item that is selected
Declaration
public string OldValue { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Equals(IPaletteSelectionChangeArgs)
Indicates whether the IPaletteSelectionChangeArgs object is equal to another object of the same type.
Declaration
public bool Equals(IPaletteSelectionChangeArgs iPaletteSelectionChangeArgs)
Parameters
Type | Name | Description |
---|---|---|
IPaletteSelectionChangeArgs | iPaletteSelectionChangeArgs | Diagram palette selection change event argument |
Returns
Type | Description |
---|---|
System.Boolean | Returns the selection objects change in the symbol palette |
Implements
System.IEquatable<>