Gets or sets the node that is placed at the lower right corner of the grid.
Namespace: MindFusion.Diagramming.Layout
Assembly: MindFusion.Diagramming.Layout
SyntaxC#
Copy Code
|
|---|
public DiagramNode EndNode { get; set; } |
Visual Basic
Copy Code
|
|---|
Public Property EndNode As DiagramNode |
An instance of the DiagramNode class. Default value is null (Nothing in Visual Basic).
RemarksIf you assign a node to that property, then StartNode cannot be null and must be set too. GridLayout usually produces better layouts if both StartNode and EndNode are null references; in such a case the algorithm automatically selects suitable nodes.
See Also