ExtendedAttribute Class |
Namespace: Aspose.Tasks
The ExtendedAttribute type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | AttributeDefinition |
Gets the attribute definition.
|
![]() ![]() | DateValue |
Gets or sets a value for attributes with date types (Date, Start, Finish).
|
![]() ![]() | DurationValue |
Gets or sets value for attributes with 'Duration' type.
|
![]() ![]() | FieldId |
Gets the id of a field.
|
![]() ![]() | FlagValue |
Gets or sets a value indicating whether a flag is set for an attribute with 'Flag' type.
|
![]() ![]() | IsErrorValue |
Gets whether calculation of extended attribute's value resulted in an error.
|
![]() ![]() | NumericValue |
Gets or sets a value for attributes with numeric types (Cost, Number).
|
![]() ![]() | TextValue |
Gets or sets a value for attributes with 'Text' type.
|
![]() ![]() | ValueGuid |
Gets the guid of a lookup value.
|
![]() ![]() | ValueReadOnly |
Gets a value indicating whether a value of this ExtendedAttribute instance is read-only.
Field ValueType:returns true if a formula or rollup is defined in the ExtendedAttributeDefinition for this object. |
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | (Inherited from Object.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() ![]() | ToString |
Returns short string representation of an extended attribute.
(Overrides ObjectToString.) |
var project = new Project(); // create new task extended attribute definition var attribute = ExtendedAttributeDefinition.CreateTaskDefinition(CustomFieldType.Cost, ExtendedAttributeTask.Cost1, "Cost ratio"); // Add a formula to the attribute. attribute.Formula = "[Cost] / [Actual Cost]"; project.ExtendedAttributes.Add(attribute); var task = project.RootTask.Children.Add("Task"); // Create extended attribute var extendedAttribute = attribute.CreateExtendedAttribute(); task.ExtendedAttributes.Add(extendedAttribute); // We set the Formula for the extended attribute, so it is read only (the value is calculated using formula). // Output is "Value is read only" Console.WriteLine(extendedAttribute.ValueReadOnly ? "Value is read only" : "Value is not read only"); // You can try to set value of read only field, but it will not have effect. extendedAttribute.NumericValue = -1000000M; Console.WriteLine("Cost is {0}, Actual Cost is {1}, Custom attribute's value is {2}", task.Get(Tsk.Cost), task.Get(Tsk.ActualCost), extendedAttribute.IsErrorValue ? "#Error" : extendedAttribute.NumericValue.ToString()); task.Set(Tsk.Cost, 100m); task.Set(Tsk.ActualCost, 120m); Console.WriteLine("Cost is {0}, Actual Cost is {1}, Custom attribute's value is {2}", task.Get(Tsk.Cost), task.Get(Tsk.ActualCost), extendedAttribute.IsErrorValue ? "#Error" : extendedAttribute.NumericValue.ToString());