Navigation
API > API/Editor > API/Editor/CurveEditor
Enhances the paste operation
| Name | UE::CurveEditor::ECurveEditorPasteFlags |
| Type | enum |
| Header File | /Engine/Source/Editor/CurveEditor/Public/Misc/KeyPasteArgs.h |
| Include Path | #include "Misc/KeyPasteArgs.h" |
Syntax
namespace UE
{
namespace CurveEditor
{
enum ECurveEditorPasteFlags
{
None,
SetSelection = 1 << 0,
Relative = 1 << 1,
Default = SetSelection,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| SetSelection | Set the selection to the pasted keys. |
| Relative | Pastes the keys from the clipboard aligning them to the nearest key to the left of the scrubber |
| Default |