Navigation
API > API/Runtime > API/Runtime/PropertyPath
Description
Get the value represented by this property path. Fast, unsafe version. Using this function implies that the path is resolved and has not changed since last resolution.
| Name | PropertyPathHelpers::SetPropertyValueFast |
| Type | function |
| Header File | /Engine/Source/Runtime/PropertyPath/Public/PropertyPathHelpers.h |
| Include Path | #include "PropertyPathHelpers.h" |
namespace PropertyPathHelpers
{
template<typename T>
bool PropertyPathHelpers::SetPropertyValueFast
(
UObject * InContainer,
const FCachedPropertyPath & InPropertyPath,
const T & InValue
)
}
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 |
| InValue | The value to write from |