[]
Field
public class Field : IPersistControl, IComponent, IDisposable
Name | Description |
---|---|
Field() | Constructor |
Name | Description |
---|---|
DefaultValue | Type associated withthe field; make it Enum |
FieldType | Type associated withthe field; make it Enum |
Formula | Field Value, used for unbound fields, this can be a formula or a static value Formaula can be combination of any number of other bound or unbound fields. eg.
Value of Field is based on FieldType which is used to evaluate as the type and the result is set to Field.Value Order of Evaluation: 1. Field.Formula, 2. If Field.Formula is null, Field.DefaultValue is used. 3. If Field.DefaultValue is null, Field.Value is used, which may or may not be null. Field.Value can also be set at run time. |
Name | Field Name |
Tag | Field Tag |
Value | Value of field |
Name | Description |
---|---|
Dispose() | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. |
Dispose(bool) | Releases unmanaged and - optionally - managed resources. |
ReadXml(XmlNode) | Reads the control from specified XML node. |
ToString() | ToString |
WriteXml(XmlElement) | Writes the control as XML to specified XML node. |
Name | Description |
---|---|
Disposed | Represents the method that handles the Disposed event of a component. |