Search
GridLayout.EndNode Property
See Also
 



Gets or sets the node that should be placed at the lower-right corner of the grid.

 Syntax

VB6  Copy Code

Public Property Get EndNode() As Object
Public Property Let EndNode( _
    ByVal value As Object _
)

C++  Copy Code

public:
IDispatch* get_EndNode ()
void put_EndNode (
    IDispatch* value
)

 Property Value

A reference to a node. The default is null (Nothing in Visual Basic).

 Remarks

If you assign a node to that property, then StartNode cannot be null and must be set too. The grid layout routine usually produces better layouts if both StartNode and EndNode are null references; in such case the algorithm automatically selects suitable nodes.

 See Also