TXmlScanner
Normalize
PROPERTY Normalize : BOOLEAN READ GetNormalize WRITE SetNormalize;
If you set Normalize to TRUE,
the following normalization on element text content will take
place:
- Content which is only
whitespace is not returned to your application
- Leading and trailing
whitespace is trimmed off
- Contiguous whitespace
characters are packed to one space character
Whitespace, as according to the
XML specification, is one of the following characters:
- The SPACE character (#32, #x0020)
- The TAB character (#9, #x0009)
- The CARRIAGE RETURN
character (#13, #x000D)
- The LINE FEED character (#10,
#x000A)
See also
Execute