GetItem
...
Returns the given child item of the item.
...
Procedure: GetItem(ItemPath: String): IItem;
API
...
Calls
Delphi
Code Block |
---|
language | delphi |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
|
// PlanSwift Code:
AItem := Item.GetItem('\Some Item');
If VarIsClear(AItem) then
Result := 'Not Found'
Else
Result := AItem.Name;
// FreshDesk Code:
var
ps: IPlanSwift;
est: IItem;
itm: IItem;
begin
// Get Planswift Interface
ps := coPlanswift.Create;
// Get the Estimating Tab
est := ps.GetItem('Job\Takeoff');
// Create a new item
itm := est.NewItem('Area', 'GetItem Example');
// ShowThe Full Path
ShowMessage(itm.FullPath);
// Free Planswift
ps := nil; |
C#
Code Block |
---|
language | c# |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
|
public class PlanswiftApi
{
private PlanSwift Planswift { get; }
public PlanSwiftApi()
{
Planswift = new PlanSwift();
}
} |
Code Block |
---|
language | c# |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
|
Coming soon |
VB/VBA (OLE)
Code Block |
---|
language | vb |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
|
Coming soon |
Code Block |
---|
language | vb |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
|
Coming soon |