Click or drag to resize

IndexLoopLoopStringFormat Enumeration

Format of IndexLoop string representation.

Namespace:  HightlanderSolutions.MeshCheckerEditorExtension.MeshAnalysisFramework
Assembly:  MeshCheckerLibrary (in MeshCheckerLibrary.dll) Version: 2.3
Syntax
C#
public enum LoopStringFormat
Members
  Member nameValueDescription
CurrentToMax0 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»

IndexToCount1 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