To open any link in a new tab, preserving your position in the current article, just hold down the <CTRL> key on your keyboard before clicking the link or click using your mouse wheel.
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Current »

GetItem



Returns the given child item of the item.



Syntax:

Procedure: GetItem(ItemPath: String): IItem;


API Calls

Delphi

Using PlanSwift Object Model
// 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#

Using IItem Object Model
public class PlanswiftApi
{
    private PlanSwift Planswift { get; }
    public PlanSwiftApi()
    {
        Planswift = new PlanSwift();
    }
}
Using PlanSwift Object Model
Coming soon

VB/VBA (OLE)

Using IItem Object Model
Coming soon
Using PlanSwift Object Model
Coming soon



  • No labels