Contents Previous Next

mxmlNewReal()

Description

Create a new real number node.

The new real number 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 real number node has no parent.

Syntax

mxml_node_t *
mxmlNewReal( mxml_node_t * parent, double real);

Arguments

NameDescription
parentParent node or MXML_NO_PARENT
realReal number value

Returns

New node


Contents Previous Next