Interface IConnector
Represents a connector point of a shape.
Inherited Members
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public interface IConnector : ISupportMouseOver, ICloneable, ISerializable
Properties
AbsolutePosition
Gets the absolute or actual position of the connector with respect to the diagramming surface.
Declaration
Point AbsolutePosition { get; }
Property Value
System.Windows.Point
|
IsActive
Gets or sets a value indicating whether this instance is active.
Declaration
bool IsActive { get; set; }
Property Value
System.Boolean
|
Name
Gets the name of the connector.
Declaration
string Name { get; set; }
Property Value
System.String
|
Remarks
This name is supposedly unique across a shape since it's used to access a connector.
Offset
Gets or sets the offset of the top-left corner of the shape. Its value range from 0 to 1.
Declaration
Point Offset { get; set; }
Property Value
System.Windows.Point
The offset. |
Shape
Gets the shape to which this connector belongs.
Declaration
IShape Shape { get; }
Property Value
IShape
|
Methods
CalculateRelativePosition(Size)
Calculates the relative position of the connector.
Declaration
Point CalculateRelativePosition(Size shapeSize)
Parameters
System.Windows.Size
shapeSize
Size of the shape. |
Returns
System.Windows.Point
|