PdcCalculation.IsInProduction: 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 == | ||
IsInProduction as Boolean | |||
== Description == | == Description == | ||
Returns if the calculation is in production | |||
== Notes == | == Notes == | ||
This property returns the value of the 'IsInProduction' property of the current calculation. It will return 'true' when the calculation is in production. | |||
== Code example == | == Code example == | ||
This code example returns the IsInProduction state of the active calculation. | |||
<source lang="vb"> | <source lang="vb"> | ||
dim objCalc | |||
set objCalc = pdc.ActiveCalculation | |||
msgbox objCalc.IsInProduction | |||
</source> | </source> | ||
== Availability == | == Availability == |
Latest revision as of 09:23, 21 May 2012
Declaration
IsInProduction as Boolean
Description
Returns if the calculation is in production
Notes
This property returns the value of the 'IsInProduction' property of the current calculation. It will return 'true' when the calculation is in production.
Code example
This code example returns the IsInProduction state of the active calculation.
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.IsInProduction