PdcCalculation.CostEstimation: 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 ==
 
CostEstimation as double


== Description ==
== Description ==
 
Returns the total value of cost estimation


== Notes ==
== Notes ==
 
This property returns the 'CostEstimation' (prior costs) of the current calculation.


== Code example ==
== Code example ==
 
This code example returns the costestimation of the active calculation.


<source lang="vb">
<source lang="vb">
dim objCalc


  set objCalc = pdc.ActiveCalculation
  msgbox objCalc.CostEstimation
</source>
</source>


== Availability ==
== Availability ==

Revision as of 09:04, 21 May 2012

Declaration

CostEstimation as double

Description

Returns the total value of cost estimation

Notes

This property returns the 'CostEstimation' (prior costs) of the current calculation.

Code example

This code example returns the costestimation of the active calculation.

dim objCalc

  set objCalc = pdc.ActiveCalculation
  msgbox objCalc.CostEstimation

Availability