PdcCalculation.Add: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
Created page with "== Declaration == Add as PdcCalculation == Description == Returns an new added calculation object == Notes == This property will add a new subcalculation To change the ..."
 
 
(2 intermediate revisions by the same user not shown)
(No difference)

Latest revision as of 14:24, 25 May 2012

Declaration

Add as PdcCalculation

Description

Returns an new added calculation object

Notes

This property will add a new subcalculation To change the quantity, posnumber and the operation use the Material property

Code example

dim objCalc
dim objSubCalc

  set objCalc = pdc.ActiveCalculation
  set objSubCalc = objCalc.Children.Add
  objSubCalc.Material.Number = 3
  objSubCalc.Material.SetPos 5
  objSubCalc.Material.NeededForOperation = 20

Availability