Navigation
API > API/Plugins > API/Plugins/DataprepCore > API/Plugins/DataprepCore/UDataprepAsset
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
int32 AddAction
(
const UDataprepActionAsset* Action |
Add a copy of the action to the Dataprep asset | DataprepAsset.h | |
int32 AddAction
(
const TArray< const UDataprepActionStep* >& ActionSteps |
Creates an action from the array of action steps or one action per action steps then add the action(s) to the Dataprep asset | DataprepAsset.h |
AddAction(const UDataprepActionAsset *)
Description
Add a copy of the action to the Dataprep asset
If action is nullptr, a new DataprepActionAsset is simply created
| Name | AddAction |
| Type | function |
| Header File | /Engine/Plugins/Enterprise/DataprepEditor/Source/DataprepCore/Public/DataprepAsset.h |
| Include Path | #include "DataprepAsset.h" |
| Source | /Engine/Plugins/Enterprise/DataprepEditor/Source/DataprepCore/Private/DataprepAsset.cpp |
int32 AddAction
(
const UDataprepActionAsset * Action
)
The index of the added action or index none if the action is invalid
Parameters
| Name | Remarks |
|---|---|
| Action | The action we want to duplicate in the Dataprep asset. Parameter can be null |
AddAction(const TArray< const UDataprepActionStep * > &)
Description
Creates an action from the array of action steps or one action per action steps then add the action(s) to the Dataprep asset
| Name | AddAction |
| Type | function |
| Header File | /Engine/Plugins/Enterprise/DataprepEditor/Source/DataprepCore/Public/DataprepAsset.h |
| Include Path | #include "DataprepAsset.h" |
| Source | /Engine/Plugins/Enterprise/DataprepEditor/Source/DataprepCore/Private/DataprepAsset.cpp |
int32 AddAction
(
const TArray< const UDataprepActionStep * > & ActionSteps
)
The index of the last added action or index none if the action is invalid
Parameters
| Name | Remarks |
|---|---|
| ActionSteps | The array of action steps to process |
| bCreateOne | Indicates if one or more action assets should be created. By default one is created |