Methods
- Sub AppGetMasterDocument( oDocument, oDocumentName, oSymbolicLinkName)
-
Get the document where the master of this image object resides.
- Parameters:
-
- oDocument
- Pointer to the document. dd>
- oDocumentName
- Name of the document containing the master. dd>
- oSymbolicLinkName
- Name of the symbolic link. dd>
- Example:
-
Dim objThisIntf As SchAppMultiImage Dim objDoc As Document Dim strDocName As String Dim strLinkName As String ... objThisIntf.AppGetMasterDocument objDoc,strDocName,strLinkName
- Func AppGetMasterObject() As
-
Get the master object of this image.
- Parameters:
-
- oMasterImage
- Pointer to the master object. dd>
- Example:
-
Dim objThisIntf As SchAppMultiImage Dim objMaster As SchMultiImageMaster ... Set objMaster = objThisIntf.AppGetMasterObject
- Sub AppIsUpToDate( oStatus)
-
Check if the image object is up-to-date.
- Parameters:
-
- oStatus
- Status of the image object. dd>
- Example:
-
Dim objThisIntf As SchAppMultiImage ... objThisIntf.AppIsUpToDate CatSchIDLMultiImageStatus_Enum
- Sub AppUpdate( iMasterImage, oImage)
-
Update the image object.
- Parameters:
-
- iMasterImage
- This is an optional input. Not NULL - the application has a handle on the master to update this image (for example in DSA application, the application will make sure the ID of this image is the same as the input master). NULL - the application will find the master based on the specific way it models the MIO concept. Sample case: the application will make sure the ID of this image is the same as the input master. dd>
- oImage
- Pointer to a new image object created if existing image object has to be replaced during the update process. This pointer is NULL if the image object is not replaced. dd>
- Example:
-
Dim objThisIntf As SchAppMultiImage Dim objMaster As SchAppMultiImageMaster Dim objNewImage As SchAppMultiImage ... objThisIntf.AppUpdate objMaster,objNewImage