PdcMasterData.Nesting: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
No edit summary
Line 20: Line 20:


<source lang="vb">
<source lang="vb">
This code example creates a new nest with 2 lines, for 2 calculations.
     Dim Nesting As PDCEXT.INesting
     Dim Nesting As PDCEXT.INesting
     Dim NestLine As PDCEXT.INestLine
     Dim NestLine As PDCEXT.INestLine

Revision as of 12:34, 24 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