PdcCalculation.TotalExtraCosts: Difference between revisions
Jump to navigation
Jump to search
Created page with "== Declaration == TotalExtraCosts as double == Description == This method returns the extra costs of a calculation, including part surcharges excluding ending surcharge. == ..." |
No edit summary |
||
Line 3: | Line 3: | ||
== Description == | == Description == | ||
This method returns the extra costs of a calculation, including part surcharges excluding ending surcharge. | This method returns the forecast extra 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 extra costs of a calculation, including part surcharges excluding ending surcharge. | ||
<source lang="vb"> | <source lang="vb"> | ||
Sub | Sub sGetExtraCosts | ||
dim objCalc | dim objCalc | ||
Latest revision as of 08:05, 20 October 2016
Declaration
TotalExtraCosts as double
Description
This method returns the forecast extra costs of a calculation, including part surcharges excluding ending surcharge.
Notes
Code example
This code example returns the forecast extra costs of a calculation, including part surcharges excluding ending surcharge.
Sub sGetExtraCosts
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.TotalExtraCosts
set objCalc = nothing
End Sub
Availability
5.3 and onwards