:: com :: sun :: star :: xsd ::

unpublished constants group WhiteSpaceTreatment
Description
specifies possibilities how to treat whitespaces in strings

Constants
Preserve White spaces should be preserved when processing the string  
Replace White spaces should be replaced with TODO when processing the string  
Collapse Multiple successive white spaces should be collapsed to a single white space when processing the string  
Constants' Details
Preserve
const short Preserve = 0;
Description
White spaces should be preserved when processing the string
Replace
const short Replace = 1;
Description
White spaces should be replaced with TODO when processing the string
Collapse
const short Collapse = 2;
Description
Multiple successive white spaces should be collapsed to a single white space when processing the string
Top of Page