Class FixedUserHandleClickEventArgs
Notifies when the fixed user handle gets clicked.
Inheritance
System.Object
FixedUserHandleClickEventArgs
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public class FixedUserHandleClickEventArgs : Object
Examples
<SfDiagramComponent Width="1000px" Height="1000px" FixedUserHandleClick="@fixedhandle">
</SfDiagramComponent>
public void fixedhandle(FixedUserHandleClickEventArgs args)
{
}
Constructors
FixedUserHandleClickEventArgs()
Declaration
public FixedUserHandleClickEventArgs()
Properties
Element
Gets nodes/connector which have the clicked fixed user handle.
Declaration
public IDiagramObject Element { get; }
Property Value
Type | Description |
---|---|
IDiagramObject | The diagram object that represents the nodes or connectors with the clicked fixed user handle. |
FixedUserHandle
Represents the instance of the clicked fixed user handle.
Declaration
public FixedUserHandle FixedUserHandle { get; }
Property Value
Type | Description |
---|---|
FixedUserHandle | An instance of the fixed user handle that was clicked by the user. |