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