Navigation
API > API/Editor > API/Editor/Persona
Options for CopyPropertiesToCDO
| Name | PersonaUtils::ECopyOptions |
| Type | enum |
| Header File | /Engine/Source/Editor/Persona/Public/PersonaUtils.h |
| Include Path | #include "PersonaUtils.h" |
Syntax
namespace PersonaUtils
{
enum ECopyOptions
{
Default = 0,
PreviewOnly = 1 << 0,
CallPostEditChangeProperty = 1 << 1,
OnlyCopyEditOrInterpProperties = 1 << 2,
FilterBlueprintReadOnly = 1 << 3,
}
}
Values
| Name | Remarks |
|---|---|
| Default | Default copy options |
| PreviewOnly | Set this option to preview the changes and not actually copy anything. |
| CallPostEditChangeProperty | Call PostEditChangeProperty for each modified property |
| OnlyCopyEditOrInterpProperties | Copy only Edit and Interp properties. Otherwise we copy all properties by default |
| FilterBlueprintReadOnly | Filters out Blueprint Read-only properties |