PdcCalculation.TotalPostOperationCostsExcl: Difference between revisions
Jump to navigation
Jump to search
Created page with "== Declaration == TotalPostOperationCostsExcl as double == Description == This method returns the post operation costs of a calculation, excluding part surcharges excluding e..." |
No edit summary |
||
Line 12: | Line 12: | ||
<source lang="vb"> | <source lang="vb"> | ||
Sub | Sub sGetPostOperationCosts | ||
dim objCalc | dim objCalc | ||
Latest revision as of 06:59, 12 May 2016
Declaration
TotalPostOperationCostsExcl as double
Description
This method returns the post operation costs of a calculation, excluding part surcharges excluding ending surcharge.
Notes
Code example
This code example returns the post extra operation of a calculation, excluding part surcharges excluding ending surcharge.
Sub sGetPostOperationCosts
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.TotalPostOperationCostsExcl
set objCalc = nothing
End Sub
Availability
5.2.56.0 and onwards