Navigation
API > API/Runtime > API/Runtime/PropertyPath
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool PropertyPathHelpers::GetPropertyValueFast
(
UObject* InContainer, |
Get the value represented by this property path. | PropertyPathHelpers.h | |
bool PropertyPathHelpers::GetPropertyValueFast
(
UObject* InContainer, |
Get the value and the leaf property represented by this property path, forcing the use of cached addresses whether or not the path resolves over object or dynamic array boundaries. | PropertyPathHelpers.h |
PropertyPathHelpers::GetPropertyValueFast(UObject *, const FCachedPropertyPath &, T &)
Description
Get the value represented by this property path. forcing the use of cached addresses whether or not the path resolves over object or dynamic array boundaries. Using this function implies that the path is resolved and has not changed since last resolution.
| Name | PropertyPathHelpers::GetPropertyValueFast |
| Type | function |
| Header File | /Engine/Source/Runtime/PropertyPath/Public/PropertyPathHelpers.h |
| Include Path | #include "PropertyPathHelpers.h" |
namespace PropertyPathHelpers
{
template<typename T>
bool PropertyPathHelpers::GetPropertyValueFast
(
UObject * InContainer,
const FCachedPropertyPath & InPropertyPath,
T & OutValue
)
}
true if the property value was successfully copied
Parameters
| Name | Remarks |
|---|---|
| InContainer | The container object to resolve the property path against |
| InPropertyPath | The property path |
| OutValue | The value to write to |
PropertyPathHelpers::GetPropertyValueFast(UObject , const FCachedPropertyPath &, T &, FProperty &)
Description
Get the value and the leaf property represented by this property path, forcing the use of cached addresses whether or not the path resolves over object or dynamic array boundaries. Using this function implies that the path is resolved and has not changed since last resolution.
| Name | PropertyPathHelpers::GetPropertyValueFast |
| Type | function |
| Header File | /Engine/Source/Runtime/PropertyPath/Public/PropertyPathHelpers.h |
| Include Path | #include "PropertyPathHelpers.h" |
namespace PropertyPathHelpers
{
template<typename T>
bool PropertyPathHelpers::GetPropertyValueFast
(
UObject * InContainer,
const FCachedPropertyPath & InPropertyPath,
T & OutValue,
FProperty *& OutProperty
)
}
true if the property value was successfully copied
Parameters
| Name | Remarks |
|---|---|
| InContainer | The container object to resolve the property path against |
| InPropertyPath | The property path |
| OutValue | The value to write to |
| OutProperty | The leaf property that the path resolved to |