PdcCalculation.Add

From External Bemet Wiki
Revision as of 11:56, 21 May 2012 by Mike (talk | contribs) (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 ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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