mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-13 23:35:30 +00:00
c075136310
Use new logo. Add favicon stuff. Prep for 2.2.1 release.
68 lines
2.2 KiB
HTML
68 lines
2.2 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE>Mini-XML Programmers Manual, Version 2.2.1</TITLE>
|
|
<META NAME="author" CONTENT="Michael Sweet">
|
|
<META NAME="copyright" CONTENT="Copyright 2003-2005">
|
|
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=iso-iso-8859-1">
|
|
<LINK REL="Start" HREF="index.html">
|
|
<LINK REL="Contents" HREF="toc.html">
|
|
<LINK REL="Prev" HREF="mxmlNewReal.html">
|
|
<LINK REL="Next" HREF="mxmlNewTextf.html">
|
|
<STYLE TYPE="text/css"><!--
|
|
BODY { font-family: serif }
|
|
H1 { font-family: sans-serif }
|
|
H2 { font-family: sans-serif }
|
|
H3 { font-family: sans-serif }
|
|
H4 { font-family: sans-serif }
|
|
H5 { font-family: sans-serif }
|
|
H6 { font-family: sans-serif }
|
|
SUB { font-size: smaller }
|
|
SUP { font-size: smaller }
|
|
PRE { font-family: monospace }
|
|
--></STYLE>
|
|
</HEAD>
|
|
<BODY>
|
|
<A HREF="toc.html">Contents</A>
|
|
<A HREF="mxmlNewReal.html">Previous</A>
|
|
<A HREF="mxmlNewTextf.html">Next</A>
|
|
<HR NOSHADE>
|
|
<H3><A name="mxmlNewText">mxmlNewText()</A></H3>
|
|
<HR noshade/>
|
|
<H4>Description</H4>
|
|
<P>Create a new text fragment node. The new text 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 text node has no parent. The
|
|
whitespace parameter is used to specify whether leading whitespace is
|
|
present before the node. The text string must be nul-terminated and is
|
|
copied into the new node.</P>
|
|
<H4>Syntax</H4>
|
|
<PRE>
|
|
<A href="mxmlnodet.html#mxml_node_t">mxml_node_t</A> *
|
|
mxmlNewText(
|
|
<A href="mxmlnodet.html#mxml_node_t">mxml_node_t</A> * parent,
|
|
int whitespace,
|
|
const char * string);
|
|
</PRE>
|
|
<H4>Arguments</H4>
|
|
<P class="table"></P>
|
|
<TABLE align="center" border="1" cellpadding="5" cellspacing="0" width="80%">
|
|
<THEAD></THEAD>
|
|
<TR bgcolor="#cccccc"><TH>Name</TH><TH>Description</TH></TR>
|
|
<TBODY></TBODY>
|
|
<TR><TD><TT>parent</TT></TD><TD>Parent node or MXML_NO_PARENT</TD></TR>
|
|
<TR><TD><TT>whitespace</TT></TD><TD>1 = leading whitespace, 0 = no
|
|
whitespace</TD></TR>
|
|
<TR><TD><TT>string</TT></TD><TD>String</TD></TR>
|
|
</TABLE>
|
|
<H4>Returns</H4>
|
|
<P>New node</P>
|
|
|
|
<!-- NEW PAGE -->
|
|
<HR NOSHADE>
|
|
<A HREF="toc.html">Contents</A>
|
|
<A HREF="mxmlNewReal.html">Previous</A>
|
|
<A HREF="mxmlNewTextf.html">Next</A>
|
|
</BODY>
|
|
</HTML>
|