Search
Factory.CreatePagedContainerNode Method (Point, Size)
See Also
 





Creates a new PagedContainerNode instance at the specified location with the specified size and adds it to the Nodes collection of the underlying diagram.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public PagedContainerNode CreatePagedContainerNode (
    Point location,
    Size size
)

Visual Basic  Copy Code

Public Function CreatePagedContainerNode( _
    location As Point, _
    size As Size _
) As PagedContainerNode

 Parameters

location

The location of the PagedContainerNode object.

size

The size of the PagedContainerNode object.

 Return Value

The newly created PagedContainerNode instance.

 Remarks

The method creates a paged container node at the position specified by location. The size of the container is set by size.

 See Also