Interface IPaletteObject
Represents the base class for all the symbol palette objects. It is used to handle common actions like property changes in any symbol palette objects.
Inherited Members
Namespace: Syncfusion.Blazor.Diagram.SymbolPalette
Assembly: Syncfusion.Blazor.dll
Syntax
public interface IPaletteObject : IDiagramObject, ICloneable
Methods
OnPropertyChanged(String, Object, Object, IPaletteObject)
Invoked whenever the effective value of any property in this Symbol palette object has been updated.
Declaration
void OnPropertyChanged(string propertyName, object newVal, object oldVal, IPaletteObject container)
Parameters
Type | Name | Description |
---|---|---|
System.String | propertyName | string that contains the propertyname. |
System.Object | newVal | An object that contain newvalue, which means new value of property |
System.Object | oldVal | An object that contain oldvalue, which means old value of property |
IPaletteObject | container | An IPaletteObject that contain palette object |