Navigation
API > API/Plugins > API/Plugins/DataprepCore
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
int32 AddStep
(
TSubclassOf< UDataprepParameterizableObject > StepType |
Add a new step base on the type of step | DataprepActionAsset.h | |
int32 AddStep
(
const UDataprepActionStep* ActionStep |
Add a copy of the step to the action | DataprepActionAsset.h | |
int32 AddStep
(
const UDataprepParameterizableObject* StepObject |
Add a copy of the step object to the action | DataprepActionAsset.h |
AddStep(TSubclassOf< UDataprepParameterizableObject >)
Description
Add a new step base on the type of step
| Name | AddStep |
| Type | function |
| Header File | /Engine/Plugins/Enterprise/DataprepEditor/Source/DataprepCore/Public/DataprepActionAsset.h |
| Include Path | #include "DataprepActionAsset.h" |
| Source | /Engine/Plugins/Enterprise/DataprepEditor/Source/DataprepCore/Private/DataprepActionAsset.cpp |
int32 AddStep
(
TSubclassOf < UDataprepParameterizableObject > StepType
)
The index of the added step or index none if the StepType is invalid
Parameters
| Name | Remarks |
|---|---|
| StepType | This type of operation or fetcher(filter) we want to use |
AddStep(const UDataprepActionStep *)
Description
Add a copy of the step to the action
| Name | AddStep |
| Type | function |
| Header File | /Engine/Plugins/Enterprise/DataprepEditor/Source/DataprepCore/Public/DataprepActionAsset.h |
| Include Path | #include "DataprepActionAsset.h" |
| Source | /Engine/Plugins/Enterprise/DataprepEditor/Source/DataprepCore/Private/DataprepActionAsset.cpp |
int32 AddStep
(
const UDataprepActionStep * ActionStep
)
The index of the added step or index none if the step is invalid
Parameters
| Name | Remarks |
|---|---|
| ActionStep | The step we want to duplicate in the action |
AddStep(const UDataprepParameterizableObject *)
Description
Add a copy of the step object to the action
| Name | AddStep |
| Type | function |
| Header File | /Engine/Plugins/Enterprise/DataprepEditor/Source/DataprepCore/Public/DataprepActionAsset.h |
| Include Path | #include "DataprepActionAsset.h" |
| Source | /Engine/Plugins/Enterprise/DataprepEditor/Source/DataprepCore/Private/DataprepActionAsset.cpp |
int32 AddStep
(
const UDataprepParameterizableObject * StepObject
)
The index of the added step or index none if the step is invalid
Parameters
| Name | Remarks |
|---|---|
| StepObject | The step object we want to duplicate in the action |