Navigation
API > API/Plugins > API/Plugins/DataprepCore > API/Plugins/DataprepCore/UDataprepSelectionTransform
Description
This function is called when the transform is executed. If your defining your transform in Blueprint or Python this is the function to override.
| Name | OnExecution |
| Type | function |
| Header File | /Engine/Plugins/Enterprise/DataprepEditor/Source/DataprepCore/Public/SelectionSystem/DataprepSelectionTransform.h |
| Include Path | #include "SelectionSystem/DataprepSelectionTransform.h" |
UFUNCTION (BlueprintNativeEvent)
void OnExecution
(
const TArray< UObject * > & InObjects,
TArray< UObject * > & OutObjects
)
Parameters
| Name | Remarks |
|---|---|
| InObjects | Input objects the transform will operate on |
| OutObjects | Resulting objects after the transform was executed |