Navigation
API > API/Plugins > API/Plugins/PropertyBindingUtils > API/Plugins/PropertyBindingUtils/FPropertyBindingPath
Description
Resolves the property path against base value. The path is assumed to be relative to the BaseValueView.
| Name | ResolveIndirectionsWithValue |
| Type | function |
| Header File | /Engine/Plugins/Runtime/PropertyBindingUtils/Source/PropertyBindingUtils/Public/PropertyBindingPath.h |
| Include Path | #include "PropertyBindingPath.h" |
| Source | /Engine/Plugins/Runtime/PropertyBindingUtils/Source/PropertyBindingUtils/Private/PropertyBindingPath.cpp |
bool ResolveIndirectionsWithValue
(
const FPropertyBindingDataView BaseValueView,
TArray < FPropertyBindingPathIndirection > & OutIndirections,
FString * OutError,
bool bHandleRedirects
) const
true of path could be resolved against the base value, and instance types were updated.
Parameters
| Name | Remarks |
|---|---|
| BaseValueView | Base value the path is relative to. |
| OutIndirections | Indirections describing how the properties were accessed. |
| OutError | Optional, pointer to string where error will be logged if update fails. |
| bHandleRedirects | If true, the method will try to resolve missing properties using core redirects, and properties on Blueprint and User Defined Structs by ID. Available only in editor builds! |