Type | Description | |||
Option as DefSchedulePDMEnum | A DefSchedulePDMEnum expression that indicates the option to be changed. | |||
Variant | A Variant expression that indicates the value of the SchedulePDM's option to be changed. |
For instance the following sample specifies the start of the project to be 1/8/2001,
With G2antt1 With .Items .DefSchedulePDM(exPDMScheduleType) = 1 .DefSchedulePDM(exPDMScheduleDate) = #1/8/2001# .SchedulePDM 0,"K1" End With End With
and the following sample specifies the end of the project to be 1/8/2001
With G2antt1 With .Items .DefSchedulePDM(exPDMScheduleType) = 2 .DefSchedulePDM(exPDMScheduleDate) = #1/8/2001# .SchedulePDM 0,"K1" End With End With