Indexes   

ManufacturingTool (Object)

A ManufacturingTool for a Manufacturing Document.

Property Index

Comment
Return the Default Comment of a Manufacturing Setup.
CorrectorCount
Retreive the number of correctors of a Manufacturing tool.
NumberOfAttributes
Give the Number og attributes of a Manufacturing Tool.
Picture
Return the path where a picture of the parametrized tool is stored.
ToolNumber
Give the Number linked to a Manufacturing Tool.
ToolType
Return the technological type of a the tool.

Method Index

AddCorrector
Adds a corrector to a Manufacturing tool.
GetAttributeNLSName
Retrieve the NLS name from the attribute name of a Manufacturing Tool.
GetAttribute
Retrieve by is name the attribute of a Manufacturing Tool.
GetCorrector
Retreive the corrector (index) of a Manufacturing tool.
GetListOfAptParameters
Retrieve the list of apt definition parameters of a Manufacturing Tool.
GetListOfAttributeUnits
Retrieve the list of attribute units of a Manufacturing Tool.
GetListOfAttributes
Retrieve the list of attributes of a Manufacturing Tool.
GetListOfGeomAttributes
Retrieve the list of geometry attributes of a Manufacturing Tool.

Properties


o Property Comment() As (Read Only)
Return the Default Comment of a Manufacturing Setup.
Example:
The following example return the comment ToolComment of to the manufacturing tool CurrentTool
 ToolComment=CurrentTool.Comment
o Property CorrectorCount() As (Read Only)
Retreive the number of correctors of a Manufacturing tool.
Example:
The following example retreives in CorrCount the number of tool correctors of tool CurrentTool
 Set NbCorr = CurrentTool.CorrectorCount
o Property NumberOfAttributes() As (Read Only)
Give the Number og attributes of a Manufacturing Tool.
Example:
The following example returns the Number of attributes of the manufacturing Tool CurrentTool
 Number = CurrentTool.NumberOfAttributes
o Property Picture() As (Read Only)
Return the path where a picture of the parametrized tool is stored.
Example:
The following example return the path PicturePath where can be found the picture of the tool CurrentTool
 PicturePath=CurrentTool.Picture
o Property ToolNumber() As (Read Only)
Give the Number linked to a Manufacturing Tool.
Example:
The following example returns the Number linked to the manufacturing Tool CurrentTool
 Number = CurrentTool.ToolNumber
o Property ToolType() As (Read Only)
Return the technological type of a the tool.
Example:
The following example return the tool type ToolType of to the manufacturing tool CurrentTool
 Set ToolType=CurrentTool.ToolType

Methods


o Func AddCorrector() As
Adds a corrector to a Manufacturing tool.
Example:
The following example adds in Corr the tool corrector of Tool CurrentTool
 Set Corr = CurrentTool.AddCorrector
o Func GetAttributeNLSName( iAttributName) As
Retrieve the NLS name from the attribute name of a Manufacturing Tool.
o Func GetAttribute( iAttribut) As
Retrieve by is name the attribute of a Manufacturing Tool.
Each attribute is a CKE object.
Example:
The following example retreives in Diameter the attribute MfgDiameter of the Manufacturing Tool firstTool
 Set Diameter = firstTool.GetAttribute(MfgDiameter)
o Func GetCorrector( index) As
Retreive the corrector (index) of a Manufacturing tool.
Example:
The following example retreives in Corr the tool corrector of Tool CurrentTool
 Set Corr = CurrentTool.GetCorrector(index)
o Sub GetListOfAptParameters( oListOfAptParameters)
Retrieve the list of apt definition parameters of a Manufacturing Tool.
Parameters are returned in an array of real values.
o Sub GetListOfAttributeUnits( oListOfAttributeUnits)
Retrieve the list of attribute units of a Manufacturing Tool.
The number of items in the output array is equal to the number of attributes of the tool.
When an attribute has no unit definition, the corresponding unit item in the output array is a blank string.
Example:
The following example retrieves in TabAttributeUnits the list of attribute units of the Manufacturing Tool firstTool
 call firstTool.GetListOfAttributeUnits(TabAttributeUnits)
o Sub GetListOfAttributes( oListOfAttributes)
Retrieve the list of attributes of a Manufacturing Tool.
Each attribute is returned as the name of a CKE object.
Example:
The following example retrieves in TabAttributes the list of attributes of the Manufacturing Tool firstTool
 call firstTool.GetListOfAttributes(TabAttributes)
o Sub GetListOfGeomAttributes( oListOfAttributes)
Retrieve the list of geometry attributes of a Manufacturing Tool.
Each attribute is returned as the name of a CKE object.
Example:
The following example retrieves in TabGeomAttributes the list of geometry attributes of the Manufacturing Tool firstTool
 call firstTool.GetListOfGeomAttributes(TabAttributes)

Copyright © 2006, Dassault Systèmes. All rights reserved.