Navigation
API > API/Runtime > API/Runtime/XmlParser > API/Runtime/XmlParser/IFastXmlCallback
Description
Called when a new XML element is encountered, starting a new scope. You'll receive a call to ProcessClose() when this element's scope has ended.
| Name | ProcessElement |
| Type | function |
| Header File | /Engine/Source/Runtime/XmlParser/Public/FastXml.h |
| Include Path | #include "FastXml.h" |
bool ProcessElement
(
const TCHAR * ElementName,
const TCHAR * ElementData,
int32 XmlFileLineNumber
)
You should return true to continue processing the file, or false to stop processing immediately.
Parameters
| Name | Remarks |
|---|---|
| ElementName | The name of the element |
| ElementData | Optional data for this element, nullptr if none |
| XmlFileLineNumber | The line number in the XML file we're on |