Search
GridLayout.StartNode Property
See Also
 



Gets or sets which node should be placed at the upper-left corner of the grid.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
IDispatch* get_StartNode ()
void put_StartNode (
    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 EndNode 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