PdcCalculation.TermsOfDeliveryID: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 3: Line 3:


== 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


<source lang="vb">
  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

Availability