...
String value that the sets the number of days the last report is valid for.
...
API
...
Calls
Delphi
Code Block |
---|
language | delphi |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
|
procedure main;
var
planswift: IPlanSwift;
settings: IItem;
property: IPropertyObject
begin
planswift := coPlanSwift.Create();
settings := planswift.getItem('\Settings');
property := planswift.GetProperty('LastReportValidUntil');
WriteLn(property.ResultAsString())
end |
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','LastReportValidUntil');
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("LastReportValidUntil");
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","LastReportValidUntil")
console.WriteLn(property.ResultAsString)
} |
VB/VBA (OLE)
Code Block |
---|
language | vb |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
|
Sub main()
Dim planswift = CreateObject("PlanSwift9.PlanCenter")
Dim settings = planswift.GetItem("\Settings")
Dim property = settings.GetProperty("LastReportValidUntil")
Console.WriteLn(property.ResultAsString());
End Sub |
Code Block |
---|
language | vb |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
|
Sub Main()
Dim planswift = CreateObject("PlanSwift9.PlanCenter")
Dim nameProperty = planswift.GetProperty("\Settings","LastReportValidUntil")
Console.WriteLn(property.ResultAsString)
End Sub |
Pascal Scripting (OLE)
Code Block |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Item Object Model |
---|
linenumbers | true |
---|
|
begin
settings := getItem('\Settings');
ShowMessage(GetResultAsString(settings,'LastReportValidUntil'));
end |
Code Block |
---|
theme | RDark |
---|
title | Root Object Model |
---|
linenumbers | true |
---|
|
begin
ShowMessage(GetResultAsString('\Settings','LastReportValidUntil'));
end |
Pascal Scripting
Code Block |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Item Object Model |
---|
linenumbers | true |
---|
|
begin
settings := PlanSwift.getItem('\Settings');
property := settings.GetProperty('LastReportValidUntil');
ShowMessage(property.ResultAsString);
end |
Code Block |
---|
theme | RDark |
---|
title | Using the PlanSwift Object Model |
---|
linenumbers | true |
---|
|
begin
property := PlanSwift.GetProperty('\Settings','LastReportValidUntil');
ShowMessage(property.ResultAsString);
end |