om.SaxAttributes.create

Create a new SAX attributes object.

Syntax

create()
  RETURNS om.SaxAttributes

Usage

The om.SaxAttributes.create() class method creates a new om.SaxAttributes object and returns it.

To hold the reference to a SAX attributes object, define a variable with the type om.SaxAttributes type.

Example

DEFINE attrs om.SaxAttributes
...
LET attrs = om.SaxAttributes.create()

For a complete example, see Example 2: Creating a SAX attributes object.