PlotCommonColumnsControllerApply Method |
Called when the user input has to be applied to the document being controlled. Returns if apply is successful.
Namespace: Altaxo.Gui.WorksheetAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic 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; thus the controller is not disposed.
Implements
IApplyControllerApply(Boolean)
RemarksThis function is called in two cases: Either the user pressed OK or the user pressed Apply.
See Also