PdcCalculation.IsChanged: 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 == | ||
IsChanged as Boolean | |||
== Description == | == Description == | ||
Returns if the calculation is changed | |||
== Notes == | == Notes == | ||
This property returns the value of the 'IsChanged' property of the current calculation. When any changes have been made to the calculation without saving the calculation the property will return 'true'. | |||
== Code example == | == Code example == | ||
This code example returns the IsChanged state of the active calculation. | |||
<source lang="vb"> | <source lang="vb"> | ||
dim objCalc | |||
set objCalc = pdc.ActiveCalculation | |||
msgbox objCalc.IsChanged | |||
</source> | </source> | ||
== Availability == | == Availability == |
Latest revision as of 09:22, 21 May 2012
Declaration
IsChanged as Boolean
Description
Returns if the calculation is changed
Notes
This property returns the value of the 'IsChanged' property of the current calculation. When any changes have been made to the calculation without saving the calculation the property will return 'true'.
Code example
This code example returns the IsChanged state of the active calculation.
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.IsChanged