Navigation
API > API/Runtime > API/Runtime/XmlParser > API/Runtime/XmlParser/IFastXmlCallback
References
| Module | XmlParser |
| Header | /Engine/Source/Runtime/XmlParser/Public/FastXml.h |
| Include | #include "FastXml.h" |
bool ProcessElement
&40;
const TCHAR &42; ElementName,
const TCHAR &42; ElementData,
int32 XmlFileLineNumber
&41;
Remarks
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. You should return true to continue processing the file, or false to stop processing immediately.
Parameters
| Name | Description |
|---|---|
| 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 |