Manual Mode
Exit action write for ManualMode
Tip
po_DLOG("OnSaveParams") << "Save params in: " << GetLongNameOfCapsule() << "." << CLOSELOG;
// write XVar as RestrictToMachineWriteable (property OWNW)
for (int i = 0; i < m_poXAggregation->GetNoOfElems(); i++)
(*m_poXAggregation)[i]->SaveToParamsIni( false, true);
or
Tip
// write all XVars which are RestrictToGuiWriteable (property GUIW)
for (int i = 0; i < m_poXAggregation->GetNoOfElems(); i++)
(*m_poXAggregation)[i]->SaveToParamsIni( true, false);
// if you want to save GUI-written-XVars from SubUnits which are not inherited from CcWsTmplLogic
// -> send the signal "SaveGuiWParams" through it's FuncPort
// e.g. for cylinders "CylFuncPort.SaveGuiWParams().send()"