PdcCalculation.GetSubContractingCosts: Difference between revisions
Jump to navigation
Jump to search
Created page with "== Declaration == == Description == == Notes == == Code example == <source lang="vb"> </source> == Availability ==" |
No edit summary |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
== Declaration == | == Declaration == | ||
GetSubContractingCosts(boExpandAllLevels as Boolean,boInclusiveChildren as Boolean,boDoRecalc as Boolean, boToeslagen as Boolean, boDeelToeslagen as Boolean) as double | |||
== Description == | == Description == | ||
This method returns the subcontracting costs of a calculation. | |||
== Notes == | == Notes == | ||
Line 12: | Line 12: | ||
<source lang="vb"> | <source lang="vb"> | ||
Sub sGetSubcontractingCosts | |||
dim objCalc | |||
set objCalc = pdc.ActiveCalculation | |||
msgbox objCalc.GetSubContractingCosts(true, true, true, true, true) | |||
set objCalc = nothing | |||
End Sub | |||
</source> | </source> | ||
== Availability == | == Availability == |
Latest revision as of 11:39, 31 July 2013
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