Interface IDiagramObject
Represents the class that is the base class for all the diagram objects, and it is used to handle common actions like property changes in any diagram object.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public interface IDiagramObject : ICloneable
Methods
OnPropertyChanged(String, Object, Object, IDiagramObject)
Invoked whenever the effective value of any property on this diagram objects has been updated.
Declaration
void OnPropertyChanged(string propertyName, object newVal, object oldVal, IDiagramObject container)
Parameters
Type | Name | Description |
---|---|---|
System.String | propertyName | string |
System.Object | newVal | object |
System.Object | oldVal | object |
IDiagramObject | container | IDiagramObject |