Hi,
Usually, based on the FormControlEventArgs e, the cancellation can be implemented using the following code snippets:
FormControlCancelableSuperEventArgs eventArgs = e as FormControlCancelableSuperEventArgs;
eventArgs.CancelSuperCall();
In cases where there are no FormControlEventArgs, you are required to throw an error to halt the super process.
Thanks,