PdcCalculation.EndProductionDate: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
Created page with "== Declaration == == Description == == Notes == == Code example == <source lang="vb"> </source> == Availability =="
 
No edit summary
 
Line 1: Line 1:
== Declaration ==
== Declaration ==
 
EndProductionDate as Date


== Description ==
== Description ==
 
Returns the calculated end of production date


== Notes ==
== Notes ==
 
This property returns the 'EndProductionDate' of the current calculation. This field can be found in the 'Other' treenode. The field is automatically calculated and cannot be changed from inside the calculation.


== Code example ==
== Code example ==
 
This code example returns the EndProductionDate of the active calculation.


<source lang="vb">
<source lang="vb">
dim objCalc


  set objCalc = pdc.ActiveCalculation
  msgbox objCalc.EndProductionDate
</source>
</source>


== Availability ==
== Availability ==
Available since December 2007.

Latest revision as of 09:13, 21 May 2012

Declaration

EndProductionDate as Date

Description

Returns the calculated end of production date

Notes

This property returns the 'EndProductionDate' of the current calculation. This field can be found in the 'Other' treenode. The field is automatically calculated and cannot be changed from inside the calculation.

Code example

This code example returns the EndProductionDate of the active calculation.

dim objCalc

  set objCalc = pdc.ActiveCalculation
  msgbox objCalc.EndProductionDate

Availability

Available since December 2007.