|
Summary
The unique identifier of the selected mailbox.
Description
The MailboxUid property specifies the unique identifier validity value of the currently selected mailbox. It uniquely identifies the mailbox on the IMAP server. This value is assigned to the
mailbox when it is created.
This property is only valid at runtime if the user is logged in and has selected a mailbox. This property should be checked in the OnSelect and OnStatus events. There is no default value for this
property.
Example
Private Sub Imap_OnSelect(Buffer As String, Length As Long)
'Delivers selected mailbox info from Select or Examine method
'Notifies that Mailbox properties have been set
Message = "Mailbox Selected:" & Chr(13) & Chr(10)
Message = "Uid: " & Imap.MailboxUid
.
.
MsgBox Message, 64, "IMAP Client Sample"
End Sub
|