PdcCalculation.GetSubContractingCosts
Jump to navigation
Jump to search
Declaration
GetSubContractingCosts(boExpandAllLevels as Boolean,boInclusiveChildren as Boolean,boDoRecalc as Boolean, boToeslagen as Boolean, boDeelToeslagen as Boolean) as double
Description
This method returns the subcontracting costs of a calculation.
Notes
Code example
Sub sGetSubcontractingCosts
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.GetSubContractingCosts(true, true, true, true, true)
set objCalc = nothing
End Sub