Interface IADGFormattable
elements returned from decision models for use in automatic document generation must conform to this class.
Namespace: Quantellia.WMServer.Asset.Model.Document
Assembly: WMServer.dll
Syntax
public interface IADGFormattable
Properties
DataType
The type that this element corresponds to. I.e. plaintext, a paragraph, an image, a table, etc...
Declaration
string DataType { get; set; }
Property Value
Type | Description |
---|---|
string |
Display
DataType specific key-value pairs used to fine-tune the way the data is presented.
Declaration
Dictionary<string, string> Display { get; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> |
Value
The value of this element.
Declaration
object Value { get; set; }
Property Value
Type | Description |
---|---|
object |