Search
Factory.CreateVisioNode Method (RectangleF, VisioContent)
See Also
 





Creates a new VisioNode instance with the specified dimensions and adds it to the Nodes collection of the underlying diagram.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public VisioNode CreateVisioNode (
    RectangleF bounds,
    VisioContent content
)

Visual Basic  Copy Code

Public Function CreateVisioNode( _
    bounds As RectangleF, _
    content As VisioContent _
) As VisioNode

 Parameters

bounds

The bounding rectangle of the new node.

content

The content of the new node.

 Return Value

The newly created VisioNode instance.

 Remarks

The method creates a VisioNode with dimensions specified by bounds.

 See Also