Interface IDisplayField
Represents a display field (and any associated contained display fields) from an Archer report or search options.
Namespace: Estrelica.Archer.Content
Assembly: Estrelica.Interfaces.dll
Syntax
[StayPublic]
[DoNotObfuscateType]
public interface IDisplayField
Properties
ContainedFields
Returns any contained IDisplayFields associated with this field. Only applicable to fields of type Subform and HistoryLog.
Declaration
IEnumerable<IDisplayField> ContainedFields { get; }
Property Value
IEnumerable<IDisplayField> |
ContainingField
If this is a Contained Display field, ContainingField will return the parent IArcherField that contains it. Otherwise ContainedField will be null. This is essentially the obverse view of ContainedFields.
Declaration
IArcherField ContainingField { get; }
Property Value
IArcherField |
Field
The IArcherField identified by the Id. If this is null it means that the field is unavailable to the current user, and the report or search will return no values for this IDisplayField.
Declaration
IArcherField Field { get; }
Property Value
IArcherField |
Id
The integer Id of the field. This will always be populated, even if the Field property is null.
Declaration
int Id { get; }
Property Value
int |