IMcImagesItem Property |
![]() |
Namespace: MediaCy.IQL.Engine
ReadOnly Default Property Item ( Index As Object ) As McImage Get
'See if BoneBig.jpg is in the collection and open it if not Dim myImage As McImage Set myImage = Images("bonebig_jpg") If myImage Is Nothing Then 'not part of the collection? Images.Open Path + "\Images\BoneBig.jpg" Else 'already in the collection, so Set ThisApplication.ActiveImage = myImage 'make it the ActiveImage End If 'BoneBig_jpg is already in the collection