Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/UObject > API/Runtime/CoreUObject/UObject/UScriptStruct
References
| Module | CoreUObject |
| Header | /Engine/Source/Runtime/CoreUObject/Public/UObject/Class.h |
| Include | #include "UObject/Class.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/Class.cpp |
virtual bool FindInnerPropertyInstance
(
FName PropertyName,
const void * Data,
const FProperty *& OutProp,
const void *& OutData
) const
Remarks
Provide an FProperty and data pointer when given an FName of a property that this object owns indirectly (ie FInstancedStruct) whether the property instance was found
Parameters
| Name | Description |
|---|---|
| PropertyName | Name of the property to retrieve |
| Data | Pointer to struct to retrieve property from |
| OutProp | Filled with the found property |
| OutData | Filled with a pointer to the data containing the property. Not offset to property instance yet - Call ContainerPtrToValuePtr before use. |