Navigation
API > API/Editor > API/Editor/PropertyEditor
References
| Module | PropertyEditor |
| Header | /Engine/Source/Editor/PropertyEditor/Public/PropertyEditorClipboard.h |
| Include | #include "PropertyEditorClipboard.h" |
Syntax
class FPropertyEditorClipboard
Remarks
Specializes clipboard handling to allow tagged entries, where you can partition the clipboard contents and look them up by tag (name). The clipboard is persisted using both the Platform implementation, and as a stored virtual clipboard.
Functions
| Type | Name | Description | |
|---|---|---|---|
| void | ClipboardAppend
(
TUniqueFunction< void(TMap< FName, FString >&)>&& TagMappingFunc |
Append the given values to the current clipboard entry. If none exists, it will create it. | |
| void | ClipboardCopy
(
const TCHAR* Str |
Perform a copy. | |
| void | ClipboardCopy
(
TUniqueFunction< void(TMap< FName, FString >&)>&& TagMappingFunc |
Perform a copy, supplying a function that maps the result to multiple tags. | |
| void | ClipboardCopy
(
const TCHAR* Str, |
Perform a copy, optionally specifying the tag. | |
| bool | ClipboardPaste
(
FString& Dest |
Gets the clipboard contents. | |
| bool | ClipboardPaste
(
FString& Dest, |
Will return true if the tag is specified and exists. |