User Analysis
There are two different modes of operations for a user analysis:
- UserAnalysis – perform the analysis and populate the results.
- UserAnalysisSettings – show a user interface to allow configuration of your analysis parameters.
NOTE: If you do not wish to make your analysis configurable (ie, your Analysis does not need any input from the User to perform its task) your Analysis does not need to interact with ZOS when in settings mode.
If the following code examples, these 4 strings are defined in class 'Program':
// // Define the strings used to interact with the Settings. // private const string SC1 = "C1"; private const string SC2 = "C2"; private const string SC3 = "C3"; private const string SPos = "Pos";
Next: