PdcCalculation.TermsOfDeliveryID
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