Method
GLibNodeinsert
Declaration [src]
GNode*
g_node_insert (
  GNode* parent,
  gint position,
  GNode* node
)
Description [src]
Inserts a GNode beneath the parent at the given position.
This method is not directly available to language bindings.
Parameters
- position
- 
            Type: gintThe position to place nodeat, with respect to its siblings If position is -1,nodeis inserted as the last child ofparent.
- node
- 
            Type: GNodeThe GNodeto insert.The data is owned by the caller of the method. 
Return value
Type: GNode
The inserted GNode.
| The returned data is owned by the instance. |