DefaultCurrency
...
String value that displays and controls the default currency (Figure 1). Options are those on the Default Currency drop-down menu below (see Figure 1). In the U-T-H Settings (advanced properties) screen (Figure 2), click the Formula cell for Default Currency to open the DefaultCurrency Formula Editor window. The currency may be edited here. Clicking on OK saves it, and it will be displayed in the Default Currency field in the Settings / General window.
...
Code Block |
---|
language | delphi |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
|
//or
procedure main;
var
planswift: IPlanSwift;
property:IPropertyObject;
begin
planswift := coPlanSwift.Create();
property := planswift.GetProperty('\Settings','DefaultCurrency');
WriteLn(property.ResultAsString())
end; |
C#
Code Block |
---|
language | c# |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
|
private void Main()
{
PlanSwift planswift = new PlanSwift();
IItem settings = planswift.GetItem(@"\Settings");
IPropertyObject property = settings.GetProperty("DefaultCurrency");
console.WriteLn(property.ResultAsString())
} |
Code Block |
---|
language | c# |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
|
private void Main()
{
PlanSwift planswift = new PlanSwift();
IPropertyObject property = planswift.GetProperty(@"\Settings","DefaultCurrency")
console.WriteLn(property.ResultAsString)
} |
...