Pages Collection Object

Pages Collection Object

See Also         Properties         Methods        

Inspectors collection (Inspector object)
Pages collection (Page object)

A collection of pages that represent the pages of an inspector. Every Inspector object has a Pages collection defined, which is empty (count 0) if the Outlook item has never been customized before.

Using the Pages Collection

Use the ModifiedFormPages property to return the Pages collection from an Inspector object. The following example returns the Pages collection for the active inspector.

Set myPages = myItem.GetInspector.ModifiedFormPages

Use the Add method to create a custom page (you can add as many as 5 customizable pages). Use the Name argument of the Add method to set the display name of the returned page. In addition to adding custom pages, you can use the Name argument to return the main page of an Inspector object for modification.

The following example returns a custom page with a default name (such as "Custom1").

Set myPage = myPages.Add

The following example returns a custom page named "My Page."

Set myPage = myPages.Add("My Page")

The following example returns the Message page if the inspector contains a mail message.

Set myPage = myPages.Add("Message")

The following example returns the General (main) page if the inspector contains a contact.

Set myPage = myPages.Add("General")

Use ModifiedFormPages(index), where index is the name or index number, to return a single page from a Pages collection.