DistType

Enum type that is used in time formatting function in generateStyle. * Note: the type is exposed to allow user to implement its own time formatting functions. *

Values

ValueMeaning
Console
File

Examples

1 string myTimeFormatting(DistType t, SysTime time)
2 {
3     final switch(t)
4     {
5         case(DistType.Console): return time.toSimpleString();
6         case(DistType.File): return time.toISOExtString();
7     }
8 }

Meta