MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / Row

Method Row

tinyxml/include/tinyxml.h:244–244  ·  view source on GitHub ↗

Return the position, in the original source file, of this node or attribute. The row and column are 1-based. (That is the first row and first column is 1,1). If the returns values are 0 or less, then the parser does not have a row and column value. Generally, the row and column value will be set when the TiXmlDocument::Load(), TiXmlDocument::LoadFile(), or any TiXmlNode::Parse() is call

Source from the content-addressed store, hash-verified

242 @sa TiXmlDocument::SetTabSize()
243 */
244 int Row() const { return location.row + 1; }
245 int Column() const { return location.col + 1; } ///< See Row()
246
247 void SetUserData( void* user ) { userData = user; } ///< Set a pointer to arbitrary user data.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected