Methods
- Sub AppAddImage( iImage)
-
Add an image for this master object.
- Parameters:
-
- iImage
- Pointer to the image to link this master to. dd>
- Example:
-
Dim objThisIntf As SchAppMultiImageMaster Dim objImage As SchAppConnectable ... objThisIntf.AppAddImage objImage
- Sub AppIsOKToCreateImage( iImageDoc, oBYes, oNLSFileName, oNLSFileKeyToMessage)
-
Check if OK to create an image of this master object.
- Parameters:
-
- iImageDoc
- Pointer to the document the image is in. dd>
- oBYes
- TRUE if this object is valid to be the master of a MIO relationship. dd>
- oNLSFileName
- File name for the NLS messages. dd>
- oNLSFileKeyToMessage
- Message key to the application specific diagnostics. dd>
- Example:
-
Dim objThisIntf As SchAppMultiImageMaster Dim objImageDoc As Document Dim bYes As boolean Dim strFileName As String Dim strFileKeyToMsg As String ... objThisIntf.AppIsOKToCreateImage objImageDoc,bYes,strFileName,strFileKeyToMsg
- Sub AppListImages( iLFilter, oLImages)
-
List the images of this master object.
- Parameters:
-
- iLFilter
- A list of image class names for filtering (can be NULL). dd>
- oLUKImages
- A list of image pointers (a list of CATIASchAppMultiImage pointers). dd>
- Example:
-
Dim objThisIntf As SchAppMultiImageMaster Dim objLFilter As SchListOfBSTRs Dim objLImages As SchListOfObjects ... objThisIntf.AppListImages objLFilter,objLImages