CurrencySymbolPositionType

CurrencySymbolPositionType enumeration

Specifies the position of a currency symbol.

public enum CurrencySymbolPositionType

Values

NameValueDescription
Undefined-1Indicates undefined value means that the field was not defined in original project file.
Before0Indicates Before currency symbol position type.
After1Indicates After currency symbol position type.
BeforeWithSpace2Indicates BeforeWithSpace currency symbol position type.
AfterWithSpace3Indicates AfterWithSpace currency symbol position type.

Remarks

While exporting into XML the Undefined values will be eliminated from resulting XML.

Examples

Shows how to specify the placement of the currency symbol (CurrencySymbolPositionType.Before).

var project = new Project(DataDir + "Project2.mpp");
// set the placement of the currency symbol
// Before, no space ($0).
project.Set(Prj.CurrencySymbolPosition, CurrencySymbolPositionType.Before);
// work with the project...

See Also