Interface IIsCalculatedProperty
Inherited Members
Namespace: Estrelica.Archer.Metadata.Field.Properties
Assembly: Estrelica.Interfaces.dll
Syntax
[StayPublic]
[DoNotObfuscateType]
public interface IIsCalculatedProperty : IArcherField, IArcherEntity, IDictionary<string, object>, ICollection<KeyValuePair<string, object>>, IEnumerable<KeyValuePair<string, object>>, IEnumerable, IComparable, IEquatable<IArcherEntity>, IArcherGuidEntity, IArcherNamedEntity, IArcherAliasedEntity, IArcherDescribedEntity, IArcherUpdateInfoEntity, IArcherASOEntity, IArcherEntityBase, IArcherBase
Properties
Formula
Returns the formula configured for the calculated field (if IsCalculated == true and extensions are available)
Declaration
string Formula { get; }
Property Value
string |
Remarks
Requires Archer API extensions
FormulaFieldIds
Returns the integer Ids of all fields referenced by the calculation formula (if IsCalculated == true and extensions are available)
Declaration
IEnumerable<int> FormulaFieldIds { get; }
Property Value
IEnumerable<int> |
Remarks
Requires Archer API extensions
FormulaFields
Returns IArcherField instances of all fields referenced by the calculation formula (if IsCalculated == true and extensions are available)
Declaration
IEnumerable<IArcherField> FormulaFields { get; }
Property Value
IEnumerable<IArcherField> |
Remarks
Requires Archer API extensions
FormulaGuid
Returns the formula configured for the calculated field (if IsCalculated == true and if extensions are available) with all integer Ids converted to their corresponding GUIDs
Declaration
string FormulaGuid { get; }
Property Value
string |
Remarks
Requires Archer API extensions
FormulaValueIds
Returns the integer Ids of all Values List Values referenced by the calculation formula (if IsCalculated == true and extensions are available)
Declaration
IEnumerable<int> FormulaValueIds { get; }
Property Value
IEnumerable<int> |
Remarks
Requires Archer API extensions
FormulaValues
Returns IArcherValuesListValue instances of all Values List Values referenced by the calculation formula (if IsCalculated == true and extensions are available)
Declaration
IEnumerable<IArcherValuesListValue> FormulaValues { get; }
Property Value
IEnumerable<IArcherValuesListValue> |
Remarks
Requires Archer API extensions
IsCalculated
Indicates whether the field is calculated
Declaration
bool IsCalculated { get; }
Property Value
bool |