Get "Status" of file in Raster Manager using VBA?

Hello,

I need to get the "status" of each file in Raster Manager using VBA.

I don't see this attribute in the Raster object and have not found it in the VBA help.

I would think it would be in the "ExtendedInformation" property but it's not. Here is a screenshot and the code is below.

Thanks!
Regan

Dim oRaster As raster
Dim Count As Long
Dim AttachedRasterFilename As String

Set oRaster = RasterManager.Rasters.Item(Count)
AttachedRasterFilename = oRaster.RasterInformation.Name
           
With oRaster.RasterInformation
 Debug.Print "FullName  = " & .FullName
        Debug.Print "Name  = " & .Name
        Debug.Print "Filesize  = " & .FileSize
        Debug.Print "IsFileConnectionLost  = " & .IsFileConnectionLost
        Debug.Print "IsFileInvalid  = " & .IsFileInvalid
        Debug.Print "IsFileMissing  = " & .IsFileMissing
End With

Parents Reply Children
No Data