Interface IHandle
Base handle interface that contain all based transformation properties and methods.
Namespace: Syncfusion.Windows.Forms.Diagram
Assembly: Syncfusion.Diagram.Base.dll
Syntax
public interface IHandle
Properties
AllowMoveX
Gets or sets a value indicating whether allow move by X axis.
Declaration
bool AllowMoveX { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
AllowMoveY
Gets or sets a value indicating whether allow move by Y axis.
Declaration
bool AllowMoveY { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
ID
Gets the handle ID.
Declaration
int ID { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The handle ID. |
InUpdate
Gets or sets a value indicating whether the handle is updating
Declaration
bool InUpdate { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
IsMoving
Gets or sets a value indicating whether the handle is moving
Declaration
bool IsMoving { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Location
Gets the handle location.
Declaration
PointF Location { get; }
Property Value
Type | Description |
---|---|
System.Drawing.PointF | The handle location. |
Methods
Move(SizeF, MeasureUnits)
Move the specified offset.
Declaration
void Move(SizeF offset, MeasureUnits offsetUnits)
Parameters
Type | Name | Description |
---|---|---|
System.Drawing.SizeF | offset | The offset. |
MeasureUnits | offsetUnits | The offset units. |