PdcCalculation.AdditionalCosts: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
Created page with "== Declaration == == Description == == Notes == == Code example == <source lang="vb"> </source> == Availability =="
 
No edit summary
 
Line 1: Line 1:
== Declaration ==
== Declaration ==
 
AdditionalCosts as double


== Description ==
== Description ==
 
Returns the total value of additionalcosts


== Notes ==
== Notes ==
 
This property returns the additional costs of the calculation. This is READ-ONLY!.


== Code example ==
== Code example ==
 
This code example opens a calculation, and shows the TOTAL of the additional costs in a message box.


<source lang="vb">
<source lang="vb">
 
dim objCalc
  set objCalc = pdc.OpenCalculation("00685")
  msgbox "The additional costs are " & objCalc.AdditionalCosts
</source>
</source>


== Availability ==
== Availability ==

Latest revision as of 08:54, 21 May 2012

Declaration

AdditionalCosts as double

Description

Returns the total value of additionalcosts

Notes

This property returns the additional costs of the calculation. This is READ-ONLY!.

Code example

This code example opens a calculation, and shows the TOTAL of the additional costs in a message box.

dim objCalc
  set objCalc = pdc.OpenCalculation("00685")
  msgbox "The additional costs are " & objCalc.AdditionalCosts

Availability