WO022
- Last UpdatedMay 12, 2023
- 1 minute read
Name
WO022 - AutoNest Interface routine - Get Name and Type of Nested Plate
Purpose
The procedure gets the number of nested parts for the given nested plate.
Declaration
void wo022( const int NestedPlateNo,
char* NestingName, int& NestingType, char* DrawingNumber);
Input
Parameters:
|
NestedPlateNo |
The identification number for the nested plate |
Result
Parameters:
|
NestingName |
The name of the nested plate |
||
|
NestingType |
The type of the nested plate: |
||
|
= |
0 |
Normal, no name returned |
|
|
= |
1 |
NC |
|
|
= |
2 |
FP |
|
|
DrawingNumber |
The drawing number |
||
/
/*
External declarations
*/
extern "C"
{
#if !defined TBLAYOUTPLUGIN_API #define TBLAYOUTPLUGIN_API
#endif
/*
**********************************************************************
Main procedure - wo022
**********************************************************************
*/
#ifdef WIN32 TBLAYOUTPLUGIN_API
#endif
void wo022( const int /* NestedPlateNo */, char* /* NestingName */,
int& /* NestingType */, char* /* DrawingNumber */)
{
}
}