Navigation
API > API/Runtime > API/Runtime/Engine
A utility to handle higher-level common actions, but default via UTypedElementWorldInterface, but asset editors can customize this behavior via FTypedElementCommonActionsCustomization.
| Name | UTypedElementCommonActions |
| Type | class |
| Header File | /Engine/Source/Runtime/Engine/Public/Elements/Framework/TypedElementCommonActions.h |
| Include Path | #include "Elements/Framework/TypedElementCommonActions.h" |
Syntax
UCLASS (Transient, MinimalAPI)
class UTypedElementCommonActions :
public UObject ,
public TTypedElementInterfaceCustomizationRegistry< FTypedElementCommonActionsCustomization >
Inheritance Hierarchy
- UObjectBase → UObjectBaseUtility → UObject → UTypedElementCommonActions
- TTypedElementInterfaceCustomizationRegistry< FTypedElementCommonActionsCustomization > → UTypedElementCommonActions
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual bool CopyNormalizedElements
(
const FTypedElementListConstPtr& ElementListPtr, |
Copy any elements from the given selection set that can be copied into the clipboard. | Elements/Framework/TypedElementCommonActions.h | |
bool CopyNormalizedElements
(
const FScriptTypedElementListProxy& ElementList |
Copy any elements from the given selection set that can be copied into the clipboard. | Elements/Framework/TypedElementCommonActions.h |
|
bool CopyNormalizedElementsToString
(
const FScriptTypedElementListProxy& ElementList, |
Copy any elements from the given selection set that can be copied into the clipboard. | Elements/Framework/TypedElementCommonActions.h |
|
bool CopySelectedElements
(
UTypedElementSelectionSet* SelectionSet |
Copy any elements from the given selection set that can be copied into the clipboard | Elements/Framework/TypedElementCommonActions.h |
|
bool CopySelectedElementsToString
(
UTypedElementSelectionSet* SelectionSet, |
Copy any elements from the given selection set that can be copied into the string | Elements/Framework/TypedElementCommonActions.h |
|
bool DeleteNormalizedElements
(
const FScriptTypedElementListProxy ElementList, |
Script Api Delete any elements from the given list that can be deleted. | Elements/Framework/TypedElementCommonActions.h |
|
bool DeleteNormalizedElements
(
const FTypedElementListConstPtr& ElementListPtr, |
Delete any elements from the given list that can be deleted. | Elements/Framework/TypedElementCommonActions.h | |
bool DeleteSelectedElements
(
UTypedElementSelectionSet* SelectionSet, |
Delete any elements from the given selection set that can be deleted. | Elements/Framework/TypedElementCommonActions.h |
|
virtual TArray< FTypedElementHandle > DuplicateNormalizedElements
(
const FTypedElementListConstPtr& ElementListPtr, |
Duplicate any elements from the given list that can be duplicated. | Elements/Framework/TypedElementCommonActions.h | |
TArray< FScriptTypedElementHandle > DuplicateNormalizedElements
(
const FScriptTypedElementListProxy ElementList, |
Duplicate any elements from the given list that can be duplicated. | Elements/Framework/TypedElementCommonActions.h |
|
TArray< FTypedElementHandle > DuplicateSelectedElements
(
const UTypedElementSelectionSet* SelectionSet, |
Duplicate any elements from the given selection set that can be duplicated. | Elements/Framework/TypedElementCommonActions.h | |
TArray< FScriptTypedElementHandle > K2_DuplicateSelectedElements
(
const UTypedElementSelectionSet* SelectionSet, |
Duplicate any elements from the given selection set that can be duplicated. | Elements/Framework/TypedElementCommonActions.h |
|
TArray< FScriptTypedElementHandle > K2_PasteElements
(
UTypedElementSelectionSet* SelectionSet, |
Paste any elements from the clipboard | Elements/Framework/TypedElementCommonActions.h |
|
TArray< FScriptTypedElementHandle > K2_PasteNormalizedElements
(
const FScriptTypedElementListProxy& ElementList, |
Paste any elements from the clipboard | Elements/Framework/TypedElementCommonActions.h |
|
TArray< FTypedElementHandle > PasteElements
(
UTypedElementSelectionSet* SelectionSet, |
Paste any elements from the given string or from the clipboard | Elements/Framework/TypedElementCommonActions.h | |
TArray< FScriptTypedElementHandle > PasteElementsFromString
(
UTypedElementSelectionSet* SelectionSet, |
Paste any elements from the given string | Elements/Framework/TypedElementCommonActions.h |
|
virtual TArray< FTypedElementHandle > PasteNormalizedElements
(
const FTypedElementListConstPtr& ElementListPtr, |
Paste any elements from the given string or from the clipboard | Elements/Framework/TypedElementCommonActions.h | |
TArray< FScriptTypedElementHandle > PasteNormalizedElementsFromString
(
const FScriptTypedElementListProxy& ElementList, |
Paste any elements from the given string | Elements/Framework/TypedElementCommonActions.h |
|