PdcCalculation.TotalMaterialCosts: Difference between revisions
Jump to navigation
Jump to search
Created page with "== Declaration == TotalMaterialCosts as double == Description == This method returns the post material costs of a calculation, including part surcharges excluding ending surc..." |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
== Description == | == Description == | ||
This method returns the | This method returns the forecast material costs of a calculation, including part surcharges excluding ending surcharge. | ||
== Notes == | == Notes == | ||
Line 9: | Line 9: | ||
== Code example == | == Code example == | ||
This code example returns the | This code example returns the forecast material costs of a calculation, including part surcharges excluding ending surcharge. | ||
<source lang="vb"> | <source lang="vb"> | ||
Sub | Sub sGetMaterialCosts | ||
dim objCalc | dim objCalc | ||
Latest revision as of 08:06, 20 October 2016
Declaration
TotalMaterialCosts as double
Description
This method returns the forecast material costs of a calculation, including part surcharges excluding ending surcharge.
Notes
Code example
This code example returns the forecast material costs of a calculation, including part surcharges excluding ending surcharge.
Sub sGetMaterialCosts
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.TotalMaterialCosts
set objCalc = nothing
End Sub
Availability
5.3 and onwards