PdcCalculation.TotalMaterialCosts: Difference between revisions

From External Bemet Wiki
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
Line 3: Line 3:


== Description ==
== Description ==
This method returns the post material costs of a calculation, including part surcharges excluding ending surcharge.
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 post material costs of a calculation, including part surcharges excluding ending surcharge.
This code example returns the forecast material costs of a calculation, including part surcharges excluding ending surcharge.


<source lang="vb">
<source lang="vb">

Revision as of 08:05, 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 sGetPostMaterialCosts
dim objCalc

  set objCalc = pdc.ActiveCalculation

  msgbox objCalc.TotalMaterialCosts

  set objCalc = nothing
End Sub

Availability

5.3 and onwards