wodPop3 ActiveX Control - Item Property
      
 

Description

Returns reference to specific message in the collection.


Property type

A Pop3Msg object.  


Syntax

object.Item(Index)



The Item Property syntax has these parts:

Part Description
object An expression evaluating to an object of type Pop3Msgs.
Index Required. An Integer value. Determines message index, or message part index.

Remarks

Item property will return message from the Messages collection. For example,

wodPop3.Messages.Item(3)

would return known information about 4th message on the server's mailbox.

Usually you don't have to write Item keyword because it's a default property. It's easier to use

wodPop3.Messages(3)

instead.