Class UserHandle
Represents the details about user handle.
Inheritance
System.Object
UserHandle
Namespace: Syncfusion.SfDiagram.Android
Assembly: Syncfusion.SfDiagram.Android.dll
Syntax
public class UserHandle : Object
Constructors
UserHandle(String, UserHandlePosition, Object)
Initializes a new instance of the UserHandle class.
Declaration
public UserHandle(string name, UserHandlePosition position, object content)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | name value. |
UserHandlePosition | position | position value. |
System.Object | content | content value. |
Properties
BackgroundColor
Gets or sets the color of the background.
Declaration
public Color BackgroundColor { get; set; }
Property Value
Type | Description |
---|---|
Android.Graphics.Color | The color of the background. |
Content
Gets or sets the content.
Declaration
public object Content { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The content. |
Name
Gets or sets the name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name. |
Position
Gets or sets the position.
Declaration
public UserHandlePosition Position { get; set; }
Property Value
Type | Description |
---|---|
UserHandlePosition | The position. |
Size
Gets or sets the size.
Declaration
public int Size { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The size. |
Visible
Gets or sets a value indicating whether this Syncfusion.SfDiagram.iOS.UserHandle is visible.
Declaration
public bool Visible { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Methods
MoveBy(Int32, Int32)
Move user handle position using move by method.
Declaration
public void MoveBy(int x, int y)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | x | X position. |
System.Int32 | y | Y position. |