Navigation
API > API/Editor > API/Editor/UnrealEd > API/Editor/UnrealEd/FPropertySoftPath
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool IsSubPropertyMatch
(
const FPropertySoftPath& PotentialBasePropertyPath |
Indicates whether a given path is a base path of the current path. | DiffUtils.h | |
bool IsSubPropertyMatch
(
TConstArrayView< FName > PotentialBasePropertyNameArray |
Indicates whether a given list of property names is a base path of the current path. | DiffUtils.h | |
bool IsSubPropertyMatch
(
const FName PotentialBasePropertyName |
Indicates whether a given property name is a base path of the current path. | DiffUtils.h |
IsSubPropertyMatch(const FPropertySoftPath &)
Description
Indicates whether a given path is a base path of the current path.
| Name | IsSubPropertyMatch |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Public/DiffUtils.h |
| Include Path | #include "DiffUtils.h" |
bool IsSubPropertyMatch
(
const FPropertySoftPath & PotentialBasePropertyPath
) const
Whether the path has the provided path as base path or not
Parameters
| Name | Remarks |
|---|---|
| PotentialBasePropertyPath | The path to look for as a base common path |
IsSubPropertyMatch(TConstArrayView< FName >)
Description
Indicates whether a given list of property names is a base path of the current path.
| Name | IsSubPropertyMatch |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Public/DiffUtils.h |
| Include Path | #include "DiffUtils.h" |
bool IsSubPropertyMatch
(
TConstArrayView< FName > PotentialBasePropertyNameArray
) const
Whether the path has the provided list of names as base path or not
Parameters
| Name | Remarks |
|---|---|
| PotentialBasePropertyNameArray | The list of property names to look for as a base common path |
IsSubPropertyMatch(const FName)
Description
Indicates whether a given property name is a base path of the current path.
| Name | IsSubPropertyMatch |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Public/DiffUtils.h |
| Include Path | #include "DiffUtils.h" |
bool IsSubPropertyMatch
(
const FName PotentialBasePropertyName
) const
Whether the path contains a single element with the name provided or not
Parameters
| Name | Remarks |
|---|---|
| PotentialBasePropertyName | Name of the single property to match |