IPCsLibTypes


Topic:

Properties and methods of IPCsLibTypes


Class hierarchy:

IPCsApplication IPCsDocument IPCsDrawing IPCsLibTypes


Properties / Methods:

Add Used to create a new IPCsLibType . Parameters needed: a string, that specified the filename to save as. Returns a IPCsLibType
Syntax:function Add(const Name: WideString) : IPCsLibType;
Load Loads a IPCsLibType . Parameters needed: a string, that specifed the filename to load. A string that represent the physic dimonsion of the IPCsLibType , can also be used. Returns a IPCsLibType
EX.
ALibType := ALibTypes.Load('#x10,2mmy47,7mm');
See more on this in the manuel for Automation (search for MECHTYPE).
Syntax:
function Load(const Filename: WideString) : IPCsLibType;
Item Selecting a specific IPCsLibType in the project
Syntax:
function Item(Index: integer) : IPCsLibType;
Count Number of Returns a IPCsLibType in the project


Comments:

IPCsLibtypes is an array of IPCsLibType then can be used, to create a symbol, which consist of more IPCsSymbol , IPCsLine , IPCsArc , IPCsText .
First create a variable of a IPCsLibType. Add a LibType to that variable.
Then add whatever you like to that variable. See codeexample here