Navigation
API > API/Plugins > API/Plugins/DataprepCore > API/Plugins/DataprepCore/UDataprepAsset
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool InsertAction
(
int32 Index |
Creates a new action then insert the action to the Dataprep asset at the requested index | DataprepAsset.h | |
bool InsertAction
(
const TArray< const UDataprepActionStep* >& InActionSteps, |
Creates an action from the array of action steps or one action per action steps then insert the action(s) to the Dataprep asset at the requested index | DataprepAsset.h | |
bool InsertAction
(
const UDataprepActionAsset* InAction, |
Insert a copy of the action to the Dataprep asset at the requested index | DataprepAsset.h |
InsertAction(int32)
Description
Creates a new action then insert the action to the Dataprep asset at the requested index
| Name | InsertAction |
| 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 |
bool InsertAction
(
int32 Index
)
True if the insertion is successful, false if the index is invalid
Parameters
| Name | Remarks |
|---|---|
| Index | The index at which the insertion must happen |
InsertAction(const TArray< const UDataprepActionStep * > &, int32)
Description
Creates an action from the array of action steps or one action per action steps then insert the action(s) to the Dataprep asset at the requested index
| Name | InsertAction |
| 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 |
bool InsertAction
(
const TArray< const UDataprepActionStep * > & InActionSteps,
int32 Index
)
True if the insertion is successful, false if the action steps or the index are invalid
Parameters
| Name | Remarks |
|---|---|
| ActionSteps | The array of action steps to process |
| Index | The index at which the insertion must happen |
InsertAction(const UDataprepActionAsset *, int32)
Description
Insert a copy of the action to the Dataprep asset at the requested index
| Name | InsertAction |
| 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 |
bool InsertAction
(
const UDataprepActionAsset * InAction,
int32 Index
)
True if the insertion is successful, false if the action or the index are invalid
Parameters
| Name | Remarks |
|---|---|
| Action | The action we want to duplicate in the Dataprep asset |
| Index | The index at which the insertion must happen |