PdcCalculation.GetExtraCosts
Declaration
GetExtraCosts(boExpandAllLevels as Boolean,boInclusiveChildren as Boolean,boDoRecalc as Boolean, boToeslagen as Boolean, boDeelToeslagen as Boolean) as double
Description
This method returns the extra costs of a calculation.
Notes
Code example
This code example returns the extra costs of an active calculation, including everything like surcharges and subcalculations.
Sub sGetExtraCosts
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.GetExtraCosts(true, true, true, true, true)
set objCalc = nothing
End Sub