CkMailboxes Java Programming Reference Documentation
CkMailboxes
Represents a collection of IMAP mailboxes.
Properties
// Returns an integer value get_Count( )
The number of mailboxes in the collection.
Note: The Mailboxes class is for use with the Chilkat IMAP component.
Methods
// index is an integer (input) // strName is a CkString object (output) // Returns a boolean value GetName( index, strName )
The name of the Nth mailbox in this collection. Indexing begins at 0. Returns true for success, false for failure.
// index is an integer (input) // Returns a boolean value HasInferiors( index )
Returns true if the Nth mailbox has inferiors (i.e. sub-mailboxes)
// index is an integer (input) // Returns a boolean value IsMarked( index )
Returns true if the Nth mailbox is marked.
// index is an integer (input) // Returns a boolean value IsSelectable( index )
Returns true if the Nth mailbox is selectable.
// index is an integer (input) // Returns a string getName( index )
The name of the Nth mailbox in this collection. Indexing begins at 0.
|