PdcCalculation.Author: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 9: | Line 9: | ||
== Code example == | == Code example == | ||
This code example returns the author of an active calculation. | |||
<source lang="vb"> | |||
Sub sGetAuthor | |||
dim objCalc | |||
set objCalc = pdc.ActiveCalculation | |||
msgbox objCalc.Author | |||
set objCalc = nothing | |||
End Sub | |||
</source> | </source> | ||
== Availability == | == Availability == |
Latest revision as of 11:44, 31 July 2013
Declaration
Author as String
Description
Returns the author
Notes
This property returns the user that created the calculation.
Code example
This code example returns the author of an active calculation.
Sub sGetAuthor
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.Author
set objCalc = nothing
End Sub