Chronos Plugins  5.2.0
This documentation covers the plugin interfaces definitions and an example implementation.
AxelSemrau.Chronos.Plugin.IColumnInfo Interface Reference

Information about a column defined in a method. More...

Properties

string Name [get]
 Column name as defined in the method editor More...
 
string Token [get]
 Column token as used in the method. More...
 
IReadOnlyList< string > StandardItems [get]
 For columns that provide a list of possible values. More...
 
string StandardValue [get]
 The standard value (if any), as entered in the method editor. More...
 

Detailed Description

Information about a column defined in a method.

To be extended on demand.

Definition at line 339 of file MiscInterfaces.cs.

Property Documentation

◆ Name

string AxelSemrau.Chronos.Plugin.IColumnInfo.Name
get

Column name as defined in the method editor

Definition at line 344 of file MiscInterfaces.cs.

344 { get; }

◆ StandardItems

IReadOnlyList<string> AxelSemrau.Chronos.Plugin.IColumnInfo.StandardItems
get

For columns that provide a list of possible values.

Null if the column does not provide any values. Please note that builtin lists like Agitators or Trays are not expanded, you get the info as defined in the method here.

Definition at line 356 of file MiscInterfaces.cs.

356 { get; }

◆ StandardValue

string AxelSemrau.Chronos.Plugin.IColumnInfo.StandardValue
get

The standard value (if any), as entered in the method editor.

For numeric values, please make sure to use InvariantCulture in conversions.

Definition at line 363 of file MiscInterfaces.cs.

363 { get; }

◆ Token

string AxelSemrau.Chronos.Plugin.IColumnInfo.Token
get

Column token as used in the method.

Definition at line 348 of file MiscInterfaces.cs.

348 { get; }

The documentation for this interface was generated from the following file: