Class UserHandle
Represents the details about user handle.
Inheritance
System.Object
UserHandle
Namespace: Syncfusion.SfDiagram.XForms
Assembly: Syncfusion.SfDiagram.XForms.dll
Syntax
public class UserHandle : BindableObject
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. |
UserHandlePosition | position | UserHandlePosition. |
System.Object | content | object content. |
Fields
BackgroundColorProperty
Represents the bindable property of BackgroundColorProperty.
Declaration
public static readonly BindableProperty BackgroundColorProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
ContentProperty
Represents the bindable property of ContentProperty.
Declaration
public static readonly BindableProperty ContentProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
NameProperty
Represents the bindable property of Name.
Declaration
public static readonly BindableProperty NameProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
PositionProperty
The position property.
Declaration
public static readonly BindableProperty PositionProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
SizeProperty
Represents the bindable property of SizeProperty.
Declaration
public static readonly BindableProperty SizeProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
VisibleProperty
Represents the bindable property of visible.
Declaration
public static readonly BindableProperty VisibleProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
Properties
BackgroundColor
Gets or sets the color of the background.
Declaration
public Color BackgroundColor { get; set; }
Property Value
Type | Description |
---|---|
Xamarin.Forms.Color | The color of the background. |
Content
Gets or sets the content of the node.
Declaration
public object Content { get; set; }
Property Value
Type |
---|
System.Object |
Name
Gets or sets the Name of the userhandle.
Declaration
public string Name { get; set; }
Property Value
Type |
---|
System.String |
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 UserHandle is visible.
Declaration
public bool Visible { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Methods
MoveBy(Int32, Int32)
MoveBy.
Declaration
public void MoveBy(int x, int y)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | x | X. |
System.Int32 | y | Y. |