Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/GetExitCode


Ignore:
Timestamp:
09/29/20 11:55:24 (4 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/GetExitCode

    v1 v2  
    1 GetExitCode
     1= !GetExitCode =
     2
     3{{{
     4int CForm::GetExitCode(void)
     5}}}
     6
     7== Parameters ==
     8
     9None
     10
     11== Return Value ==
     12
     13currently set exit code value.
     14
     15== Remarks ==
     16
     17GetExitCode may be used after a SetExitCode call has been performed to determine the exit value that will be returned when the FORM_RUN ends. This would usually only be useful during a form done event.
     18
     19== Example ==
     20
     21{{{
     22// m_pForm is a pointer already set for the form we want to end
     23if(m_pForm->GetExitCode() == 123)
     24{
     25   DEBUG_MSG("Exit code is 123\n");
     26}
     27}}}