PdcMaterial.DeliveryDate

From External Bemet Wiki
Jump to navigation Jump to search

Declaration

DeliveryDate as Date

Description

Returns or changes the delivery date

Notes

This property sets or returns the delivery date of a material.

Code example

This code example opens a calculation, loops through its materials and returns the delivery date for each of them.

dim objCalc

  set objCalc = pdc.OpenCalculation("00685")
  for i = 0 to objCalc.MaterialList.Count -1
    set objMat = objCalc.MaterialList(i)
    msgbox "Material's delivery date: " & objMat.DeliveryDate
  next

Availability

Available since April 2008.