Class UserHandleOffset
Represents the position of the fixed user handle.
Namespace: Syncfusion.Blazor.Diagrams
Assembly: Syncfusion.Blazor.dll
Syntax
public class UserHandleOffset : SfDiagramBase
Examples
FixedUserHandles = new ObservableCollection<DiagramNodeFixedUserHandle>()
{
new DiagramNodeFixedUserHandle() { Offset = new UserHandleOffset() { X = 1, Y = 0 },Id = "user1", Height = 20, Width = 20, Visibility = true,Margin = new UserHandleMargin() { Right = 20, Bottom = 20 },CornerRadius = 4, PathData = "M60.3,18H27.5c-3,0-5.5,2.4-5.5,5.5v38.2h5.5V23.5h32.7V18z M68.5,28.9h-30c-3,0-5.5,2.4-5.5,5.5v38.2c0,3,2.4,5.5,5.5,5.5h30c3,0,5.5-2.4,5.5-5.5V34.4C73.9,31.4,71.5,28.9,68.5,28.9z M68.5,72.5h-30V34.4h30V72.5z" }
},
Constructors
UserHandleOffset()
Represents the position of the fixed user handle
Declaration
public UserHandleOffset()
Properties
X
Gets or sets the x coordinate position of the fixed user handle
Declaration
public Nullable<double> X { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Y
Gets or sets the Y coordinate position of the fixed user handle
Declaration
public Nullable<double> Y { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |