PdcMasterData.Nesting: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 15: Line 15:


== Notes ==
== Notes ==
Available from PdC 5.4




dim Nesting
== Code example ==
dim NestLine
This code example creates a new nest with 2 lines, for 2 calculations.


  Nesting = pdc.App.MasterData.Nesting
<source lang="vb">


  Nesting.AddOperation("00664", "10", "LASER1", 100, false, "0")
    Dim Nesting As PDCEXT.INesting
  Nesting.AddOperation("00665", "10", "LASER1", 200, false, "0")
    Dim NestLine As PDCEXT.INestLine


  Nesting.Save
    Nesting = pdc.App.MasterData.Nesting
 
    Nesting.AddOperation("00664", "10", "LASER1", 100, false, "0")
    Nesting.AddOperation("00665", "10", "LASER1", 200, false, "0")
 
    Nesting.Save
 
    Try
      System.Runtime.InteropServices.Marshal.FinalReleaseComObject(Nest)
      Nest = Nothing
    Catch ex As Exception
      Nest = Nothing
    Finally
      GC.Collect()
    End Try
</source>
 
== Availability ==
Since PdC 5.4

Latest revision as of 12:18, 25 July 2018

Methods

pdcNesting.AddOperation
pdcNesting.Read
pdcNesting.Save
pdcNesting.SetMultiMachine

Properties

pdcNesting.MultiMachine
pdcNesting.NestingLineList
pdcNesting.NestingNo
pdcNesting.Registered

Description

Nesting Object

Notes

Code example

This code example creates a new nest with 2 lines, for 2 calculations.

    Dim Nesting As PDCEXT.INesting
    Dim NestLine As PDCEXT.INestLine

    Nesting = pdc.App.MasterData.Nesting

    Nesting.AddOperation("00664", "10", "LASER1", 100, false, "0")
    Nesting.AddOperation("00665", "10", "LASER1", 200, false, "0")

    Nesting.Save

    Try
      System.Runtime.InteropServices.Marshal.FinalReleaseComObject(Nest)
      Nest = Nothing
    Catch ex As Exception
      Nest = Nothing
    Finally
      GC.Collect()
    End Try

Availability

Since PdC 5.4