Chronos Plugins 5.4.0
This documentation covers the plugin interfaces definitions and an example implementation.
Loading...
Searching...
No Matches
AxelSemrau.Chronos.Plugin.Columns.RecommendedColumnTypeAttribute Class Reference

Decorate a task property with this attribute to recommend a specific column type for the "convert to column" function. More...

+ Inheritance diagram for AxelSemrau.Chronos.Plugin.Columns.RecommendedColumnTypeAttribute:
+ Collaboration diagram for AxelSemrau.Chronos.Plugin.Columns.RecommendedColumnTypeAttribute:

Public Member Functions

 RecommendedColumnTypeAttribute (string internalColTypeName)
 Recommend the decorated property with this type of column (internal names as used in the method file).
 
 RecommendedColumnTypeAttribute (BuiltinColumnTypeName bcn)
 If using builtin columns, use this constructor to avoid errors because of misspelt names.
 

Properties

string InternalColumnTypeName [get, protected set]
 Name of the column type as used internally in the method XML.
 

Detailed Description

Decorate a task property with this attribute to recommend a specific column type for the "convert to column" function.

Definition at line 72 of file ColumnType.cs.

Constructor & Destructor Documentation

◆ RecommendedColumnTypeAttribute() [1/2]

AxelSemrau.Chronos.Plugin.Columns.RecommendedColumnTypeAttribute.RecommendedColumnTypeAttribute ( string  internalColTypeName)

Recommend the decorated property with this type of column (internal names as used in the method file).

Parameters
internalColTypeName

Definition at line 78 of file ColumnType.cs.

79 {
80 InternalColumnTypeName = internalColTypeName;
81 }
string InternalColumnTypeName
Name of the column type as used internally in the method XML.
Definition: ColumnType.cs:93

References AxelSemrau.Chronos.Plugin.Columns.RecommendedColumnTypeAttribute.InternalColumnTypeName.

◆ RecommendedColumnTypeAttribute() [2/2]

AxelSemrau.Chronos.Plugin.Columns.RecommendedColumnTypeAttribute.RecommendedColumnTypeAttribute ( BuiltinColumnTypeName  bcn)

If using builtin columns, use this constructor to avoid errors because of misspelt names.

Parameters
bcn

Definition at line 87 of file ColumnType.cs.

87 : this(bcn.ToString())
88 {}

Property Documentation

◆ InternalColumnTypeName

string AxelSemrau.Chronos.Plugin.Columns.RecommendedColumnTypeAttribute.InternalColumnTypeName
getprotected set

Name of the column type as used internally in the method XML.

Definition at line 93 of file ColumnType.cs.

93{ get; protected set; }

Referenced by AxelSemrau.Chronos.Plugin.Columns.RecommendedColumnTypeAttribute.RecommendedColumnTypeAttribute().


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