PdcCalculation.GetOperationCosts

From External Bemet Wiki
Revision as of 10:56, 3 May 2016 by Mike (talk | contribs) (Description)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Declaration

GetOperationCosts(boExpandAllLevels as Boolean,boInclusiveChildren as Boolean,boDoRecalc as Boolean, boToeslagen as Boolean, boDeelToeslagen as Boolean) as double

Description

This method returns the operation costs (precalculation) of a calculation.

Notes

Code example

This code example returns the operation costs of an active calculation, including everything like surcharges and subcalculations.

Sub sGetOperationCosts
dim objCalc

  set objCalc = pdc.ActiveCalculation

  msgbox objCalc.GetOperationCosts(true, true, true, true, true)

  set objCalc = nothing
End Sub

Availability