Syntax

Invoked when the XML parser detects ignorable whitespace.

Procedure

PROCEDURE IgnorableWhitespace:
  DEFINE INPUT PARAMETER charData AS CHARACTER.
  DEFINE INPUT PARAMETER numChars AS INTEGER.
  ...
END PROCEDURE.

Method

METHOD PUBLIC VOID IgnorableWhitespace(INPUT charData AS CHARACTER, 
                                       INPUT numChars AS INTEGER): 
  ... 
END METHOD.
charData
A CHARACTER string representing a contiguous block of ignorable whitespace in an XML document.
numChars
An INTEGER expression indicating the size, in characters, of the character string.

If validation is enabled, the XML parser reports ignorable whitespace through this callback. If validation is not enabled, the XML parser reports whitespace through the Characters callback.

The data type of charData is CHARACTER, not MEMPTR, because it is unlikely that an XML document has over 32K of contiguous ignorable whitespace.