GetJobTotal
Retrieves the total number of items of a certain type in the entire opened job.
Syntax:
Function
: GetJobTotal
...
Text:
...
(
const
Propertyname:
WideString
;
const
ItemType:
WideString
=
''
):
Double
;
Code Reference:
- 1. Create a New Form application
- 2. Add a button to the form
- 3. Add Planswift to reference (Planswift9_tlb in the uses)
- 4. Copy code to button onclick event
API Calls
Delphi
Code Block |
---|
language | delphi |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
procedure TForm1.psGetJobTotal(Sender: TObject);
var
ps: IPlanSwift;
est: IItem;
folder: IItem;
i: Integer;
itm: IItem;
CostEachTotal,QtyTotal: Extended;
begin
//Create the Planswift Interface
ps := coPlanswift.Create;
//Begin Update Procedure
ps.BeginUpdate;
//Get the Takeoff item (Estimating Tab in Planswift)
est := ps.GetItem('Job\Takeoff');
//Create a New Folder in Estimating
folder := est.NewItem('Folder','Material Items');
// Add 20 Material Part Items to the folder
for i := 0 to 20 - 1 do begin
itm := folder.NewItem('Material','Job Total Demo Material ' + intToStr(i));
//Set their Qty and Cost Each
itm.SetPropertyFormula('Qty','20');
itm.SetPropertyFormula('Cost Each','1.50');
end;
//get Cost Each Total
CostEachTotal := ps.GetJobTotal('Cost Each','Material');
//get Qty Total
QtyTotal := ps.GetJobTotal('Qty','Material');
//Show the values
ShowMessage('Qty Total: ' + FloatToStr(QtyTotal) + ' Cost Each Total: ' + FloatToStr(CostEachTotal));
//End Update Procedure
ps.EndUpdate;
//Free Planswift
ps := nil;
end; |
Code Block |
---|
language | delphi |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
|
|
C#
Code Block |
---|
language | c# |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
|
|
Code Block |
---|
language | c# |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
|
|
VB/VBA (OLE)
Code Block |
---|
language | vb |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
|
|
Code Block |
---|
language | vb |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
|
|
Pascal Scripting (OLE)
Code Block |
---|
firstline | 1 |
---|
title | Item Object Model |
---|
linenumbers | true |
---|
|
|
Code Block |
---|
title | Root Object Model |
---|
linenumbers | true |
---|
|
|
Pascal Scripting
Code Block |
---|
firstline | 1 |
---|
title | Item Object Model |
---|
linenumbers | true |
---|
|
|
Code Block |
---|
title | Using the PlanSwift Object Model |
---|
linenumbers | true |
---|
|
|