PdcCalculation.TermsOfDeliveryID: 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 == | ||
TermsOfDeliveryID as long | |||
== Description == | == Description == | ||
This property returns the terms of delivery ID of a calculation. | |||
== Notes == | == Notes == | ||
Line 9: | Line 9: | ||
== Code example == | == Code example == | ||
This code example returns the terms of delivery ID of an active calculation. | |||
<source lang="vb"> | |||
Sub sGetTermsOfDeliveryID | |||
dim objCalc | |||
set objCalc = pdc.ActiveCalculation | |||
msgbox objCalc.TermsOfDeliveryID | |||
set objCalc = nothing | |||
End Sub | |||
</source> | </source> | ||
== Availability == | == Availability == |
Latest revision as of 11:57, 31 July 2013
Declaration
TermsOfDeliveryID as long
Description
This property returns the terms of delivery ID of a calculation.
Notes
Code example
This code example returns the terms of delivery ID of an active calculation.
Sub sGetTermsOfDeliveryID
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.TermsOfDeliveryID
set objCalc = nothing
End Sub