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

string myTimeFormatting(DistType t, SysTime time)
{
    final switch(t)
    {
        case(DistType.Console): return time.toSimpleString();
        case(DistType.File): return time.toISOExtString();
    }
}

Meta