TextPos

Where in the XML document an entity is.

The line and column numbers are 1-based.

The primary use case for TextPos is XMLParsingException, but an application may have other uses for it. The TextPos for an Entity can be obtained from Entity.pos.

struct TextPos {}

Members

Variables

col
int col;

A column number in a line of the XML file.

line
int line;

A line number in the XML file.

See Also

Meta