PdcCalculation.CycleCosts: Difference between revisions
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 == | ||
CycleCosts as double | |||
== Description == | == Description == | ||
Returns the total value of cyclecosts | |||
== Notes == | == Notes == | ||
This property returns the 'CycleCosts' of all the internal operations for the current calculation (excluding subcalculations or parent calculations the current calculation might have). | |||
== Code example == | == Code example == | ||
This code example returns the CycleCosts of the active calculation. | |||
<source lang="vb"> | <source lang="vb"> | ||
dim objCalc | |||
set objCalc = pdc.ActiveCalculation | |||
msgbox objCalc.CycleCosts | |||
</source> | </source> | ||
== Availability == | == Availability == |
Latest revision as of 09:09, 21 May 2012
Declaration
CycleCosts as double
Description
Returns the total value of cyclecosts
Notes
This property returns the 'CycleCosts' of all the internal operations for the current calculation (excluding subcalculations or parent calculations the current calculation might have).
Code example
This code example returns the CycleCosts of the active calculation.
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.CycleCosts