Search
Group.AttachToFractionalPosition Method
See Also
 





Attaches specified node to this group, keeping original size intact and maintaining original distance to point specified as fraction of main node's size.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public bool AttachToFractionalPosition (
    DiagramNode node,
    float xPercent,
    float yPercent
)

Visual Basic  Copy Code

Public Function AttachToFractionalPosition( _
    node As DiagramNode, _
    xPercent As Single, _
    yPercent As Single _
) As Boolean

 Parameters

node

The DiagramNode to be attached.

xPercent

Percentage of main node's width.

yPercent

Percentage of main node's height.

 Return Value

true if specified node was attached to the group, or false otherwise.

 See Also