|  | IndexLoopLoopStringFormat Enumeration | 
Namespace: HightlanderSolutions.MeshCheckerEditorExtension.MeshAnalysisFramework
 Syntax
Syntaxpublic enum LoopStringFormat
 Members
Members| Member name | Value | Description | |
|---|---|---|---|
| CurrentToMax | 0 | The format at which the current index (Current) and the maximum (Max) are displayed. The current index belongs to the interval from Min to Max.  Remarks When Min=3, Max=10 and Current=6 then result string will be «6/10» When Min=0, Max=10 and Current=10 then result string will be «10/10» When Min=0, Max=10 and Current=0 then result string will be «0/10» | |
| IndexToCount | 1 | The format at which the index in loop and the count of indices are displayed. The index in loop belongs to the interval from 1 to Max-Min+1.  Remarks When Min=3, Max=10 and Current=6 then result string will be «4/8» When Min=0, Max=9 and Current=9 then result string will be «10/10» When Min=0, Max=9 and Current=0 then result string will be «1/10» | 
 See Also
See Also