PdcCalculation.Exported: 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 == | ||
Exported as Boolean | |||
== Description == | == Description == | ||
Returns if the calculation is exported | |||
== Notes == | == Notes == | ||
This property returns the state of the 'Exported' checkbox of the current calculation. This checkbox can be found in the 'Other' treenode. This property is no longer supported. | |||
== Code example == | == Code example == | ||
This code example returns the Exported checkbox state of the active calculation. | |||
<source lang="vb"> | <source lang="vb"> | ||
dim objCalc | |||
set objCalc = pdc.ActiveCalculation | |||
msgbox objCalc.Exported | |||
</source> | </source> | ||
== Availability == | == Availability == |
Latest revision as of 09:14, 21 May 2012
Declaration
Exported as Boolean
Description
Returns if the calculation is exported
Notes
This property returns the state of the 'Exported' checkbox of the current calculation. This checkbox can be found in the 'Other' treenode. This property is no longer supported.
Code example
This code example returns the Exported checkbox state of the active calculation.
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.Exported