OriginalFileSize Property

Microsoft Publisher Visual Basic

OriginalFileSize Property

Returns a Long representing the size, in bytes, of the linked picture or OLE object. Read-only.

expression.OriginalFileSize()

expression    Required. An expression that returns a PictureFormat object.

Remarks

This property only applies to linked pictures. Returns "Permission Denied" for shapes representing embedded or pasted pictures.

Use either of the following properties to determine whether a shape represents a linked picture:

Example

The following example tests each picture in the active publication, and prints selected image properties for pictures that are linked.

    Dim pgLoop As Page
Dim shpLoop As Shape

For Each pgLoop In ActiveDocument.Pages
    For Each shpLoop In pgLoop.Shapes
        If shpLoop.Type = pbLinkedPicture Then
        
            With shpLoop.PictureFormat
                   
                        Debug.Print "File Name: " & .Filename
                        Debug.Print "Original File Size: " & .OriginalFileSize & " bytes"
                        
            End With
        End If
    Next shpLoop
Next pgLoop