Apply different sets of DataTransformations
depending on user input - e.g., drop-down selection.
Current API only allows removal one step at a time:
for op in sourceview.GetAllOperations[DataTransformationsOperation]():
if sourceview.CanRemoveOperation(op):
sourceview.RemoveOperation(op)
Be able to remove all DataTransformations
in a SourceView
in one go.