PdcCalculation.Author: 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 |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
== Declaration == | == Declaration == | ||
Author as String | |||
== Description == | == Description == | ||
Returns the author | |||
== Notes == | == Notes == | ||
This property returns the user that created the calculation. | |||
== 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