DataTablesAggregationOptionsControllerApply Method |
Called when the user input has to be applied to the document being controlled. Returns if applying succeeded.
Namespace: Altaxo.Gui.DataAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic override bool Apply(
bool disposeController
)
Parameters
- disposeController Boolean
-
If the apply operation was successful and this argument is true, the controller should release all temporary resources, because they are not needed any more.
If this argument is false, the controller should be reinitialized with the current model (the model that results from the apply operation).
Return Value
Boolean if the apply operation was successful; otherwise
.
If
is returned, the
disposeController argument is ignored and the controller is not disposed.
Implements
IApplyControllerApply(Boolean)
Remarks
This function is called in two cases: either the user pressed OK or the user pressed Apply.
See Also