Class OutlineValue

Class OutlineValue

Namespace: Aspose.Tasks
Assembly: Aspose.Tasks.dll (25.2.0)

Represents an outline value.

[ClassInterface(ClassInterfaceType.AutoDual)]
public class OutlineValue

Inheritance

objectOutlineValue

Inherited Members

object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Constructors

OutlineValue()

public OutlineValue()

Properties

Description

Gets or sets the description of an outline value.

public string Description { get; set; }

Property Value

string

DurationValue

Gets or sets the duration if Type is Duration.

public Duration? DurationValue { get; set; }

Property Value

Duration?

Remarks

Prefer this property over the Aspose.Tasks.OutlineValue.Value, when you need to set the value for OutlineValues with Duration type .

IsCollapsed

Gets or sets a value indicating whether outline value is collapsed or not.

public bool IsCollapsed { get; set; }

Property Value

bool

Remarks

This is new for MS Project 2010 property.

ParentValueId

Gets or sets the Id of a parent node of an outline code.

public int ParentValueId { get; set; }

Property Value

int

Type

Gets or sets the outline code type.

public OutlineValueType Type { get; set; }

Property Value

OutlineValueType

Value

Gets or sets the actual value.

public string Value { get; set; }

Property Value

string

ValueGuid

Gets a GUID which identifies this value among others in the entire project.

public Guid ValueGuid { get; }

Property Value

Guid

ValueId

Gets or sets the unique Id of an outline code value within a project.

public int ValueId { get; set; }

Property Value

int