Chilkat C# Mailboxes Class Reference
Mailboxes
Represents a collection of IMAP mailboxes.
Object Creation
(C#)
Chilkat.Mailboxes obj = new Chilkat.Mailboxes();
(VB.NET)
Dim obj As New Chilkat.Mailboxes()
Properties
public int Count {get; }
The number of mailboxes in the collection.
Note: The Mailboxes class is for use with the Chilkat IMAP component.
Methods
public string GetName(int index);
The name of the Nth mailbox in this collection. Indexing begins at 0. Returns a null on failure
public bool HasInferiors(int index);
Returns true if the Nth mailbox has inferiors (i.e. sub-mailboxes)
public bool IsMarked(int index);
Returns true if the Nth mailbox is marked.
public bool IsSelectable(int index);
Returns true if the Nth mailbox is selectable.
|