property Message.Count as Long
Gets the number of the lines in the message including the header.

TypeDescription
Long A long expression that indicates the number of lines in the message.

The Count property counts the lines of the message's header.  Use the Line property to access a specific line in the message.

The following sample prints the entire message's content:

 With ibx(i)
    For j = 0 To .Count - 1
        Debug.Print .Line(j)
    Next
End With