Contents Previous Next

mxmlNewInteger()

Description

Create a new integer node.

The new integer node is added to the end of the specified parent's child list. The constant MXML_NO_PARENT can be used to specify that the new integer node has no parent.

Syntax

mxml_node_t *
mxmlNewInteger( mxml_node_t * parent, int integer);

Arguments

NameDescription
parentParent node or MXML_NO_PARENT
integerInteger value

Returns

New node


Contents Previous Next