PdcCalculation.UserCheck: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 7: | Line 7: | ||
== Notes == | == Notes == | ||
This property sets or returns the boolean value of one of the 10 fixed user checks of the active calculation. | 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. | |||
Its index runs from 0 to 9. The corresponding fieldname starts with 1 (DO_VINK1) | |||
== Code example == | == Code example == |
Latest revision as of 10:22, 20 December 2018
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. The corresponding fieldname starts with 1 (DO_VINK1)
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)