PdcCalculation.UserCheck: 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 == | ||
UserCheck(Index as long) as Boolean | |||
== Description == | == Description == | ||
Returns or changes a fixed usercheck | |||
== Notes == | == Notes == | ||
This property sets or returns the boolean value of one of the 10 fixed user checks of the active calculation. | |||
Its index runs from 0 to 9. | |||
== Code example == | == Code example == | ||
This code example returns the boolean value of usercheck 1 of the active calculation. | |||
<source lang="vb"> | <source lang="vb"> | ||
dim objCalc | |||
set objCalc = pdc.ActiveCalculation | |||
msgbox objCalc.UserCheck(0) | |||
</source> | </source> | ||
== Availability == | == Availability == |
Revision as of 10:33, 21 May 2012
Declaration
UserCheck(Index as long) as Boolean
Description
Returns or changes a fixed usercheck
Notes
This property sets or returns the boolean value of one of the 10 fixed user checks of the active calculation. Its index runs from 0 to 9.
Code example
This code example returns the boolean value of usercheck 1 of the active calculation.
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.UserCheck(0)