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.

Functions - Edit - FD

Functions - Edit

Displays the Item in the Editor Dialog.

Syntax:

Function: IItem.Edit(ShowAdvanced: Boolean True): Boolean;

API Calls

Delphi

Using IItem Object Model
var  
ps: IPlanSwift;
  est: IItem;
  itm: IItem;
  sect: IItem;
  rslt: Boolean;
begin
  // Create Planswift Interface
  ps := coPlanswift.Create;
  // Get The Estimating Tab
  est := ps.GetItem('Job\Takeoff');
  // Create a New Area Item
  itm := est.NewItem('Area', 'DoRecord Example');
  // Open the Property Editor
  rslt := itm.Edit(true);
  // if ok was pressed then record the item else delete the item
  if rslt then
  begin
    sect := itm.NewSection('DoRecord Section');
    sect.DoRecord;
  end
  else
  begin
    itm.Delete;
  end;
  // Free planswift
  ps := nil;
Using PlanSwift Object Model
 

C#

Using IItem Object Model
 
Using PlanSwift Object Model
 

VB/VBA (OLE)

Using IItem Object Model
 
Using PlanSwift Object Model
 

Pascal Scripting (OLE)

Item Object Model
 
Root Object Model
 

Pascal Scripting

Item Object Model
 
Using the PlanSwift Object Model
 

Copyright 2023 ConstructConnect