U-X > XML.ignoreWhite |
![]() ![]() ![]() |
XML.ignoreWhite
Availability
Flash Player 5.
Usage
myXML
.ignoreWhite =boolean
XML.prototype.ignoreWhite =boolean
Parameters
boolean
A Boolean (true
or false
) value.
Description
Property; Default setting is false
. When set to true
, text nodes that only contain white space are discarded during the parsing process. Text nodes with leading or trailing white space are unaffected.
Usage 1: You can set the ignoreWhite
property for individual XML objects, as in the following code:
myXML.ignoreWhite = true
![]() ![]() ![]() |