Navigation
API > API/Runtime > API/Runtime/Engine
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Public/ObjectEditorUtils.h |
| Include | #include "ObjectEditorUtils.h" |
namespace FObjectEditorUtils
{
template<typename SourceType, typename DestinationType>
bool FObjectEditorUtils&58;&58;MigratePropertyValue
&40;
SourceType &42; SourceObject,
FName SourcePropertyName,
DestinationType &42; DestinationObject,
FName DestinationPropertyName
&41;
}
Remarks
Copy the value of a property from source object to a destination object. true if the value was successfully migrated.
Parameters
| Name | Description |
|---|---|
| SourceObject | The object to copy the property value from. |
| SourcePropertyName | The name of the property on the SourceObject to copy the value from. |
| DestinationObject | The object to copy the property value to. |
| DestinationPropertyName | The name of the property on the DestinationObject to copy the value to. |