PdcCalculation.GetMaterialCosts: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 9: | Line 9: | ||
== Code example == | == Code example == | ||
This code example returns the | |||
<source lang="vb"> | |||
Sub sGetMaterialCosts | |||
dim objCalc | |||
set objCalc = pdc.ActiveCalculation | |||
msgbox objCalc.GetMaterialCosts(true, true, true, true, true) | |||
set objCalc = nothing | |||
End Sub | |||
</source> | </source> | ||
== Availability == | == Availability == |
Revision as of 11:31, 31 July 2013
Declaration
GetMaterialCosts(boExpandAllLevels as Boolean,boInclusiveChildren as Boolean,boDoRecalc as Boolean, boToeslagen as Boolean, boDeelToeslagen as Boolean) as double
Description
Notes
Code example
This code example returns the
Sub sGetMaterialCosts
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.GetMaterialCosts(true, true, true, true, true)
set objCalc = nothing
End Sub