Navigation
API > API/Developer > API/Developer/TraceAnalysis > API/Developer/TraceAnalysis/Trace > API/Developer/TraceAnalysis/Trace/IAnalyzer > API/Developer/TraceAnalysis/Trace/IAnalyzer/FEventData > API/Developer/TraceAnalysis/Trace/IAnalyzer/FEventData/GetValue
References
| Module | TraceAnalysis |
| Header | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analyzer.h |
| Include | #include "Trace/Analyzer.h" |
template<typename ValueType>
ValueType GetValue
(
const ANSICHAR * FieldName,
ValueType Default
) const
Remarks
Queries the value of a field of the event. It is not necessary to match ValueType to the type in the event. Value of the field (coerced to ValueType) if found, otherwise 0.
Parameters
| Name | Description |
|---|---|
| FieldName | The name of the event's field to get the value for. |
| Default | Return this value if the given field was not found. |