PropertyPageSite Interface

Definition

Represents the container of a custom property page.

public interface class PropertyPageSite
[System.Runtime.InteropServices.Guid("0006307F-0000-0000-C000-000000000046")]
public interface PropertyPageSite
Public Interface PropertyPageSite
Attributes

Remarks

Use the Parent property of the ActiveX control that implements the PropertyPage object associated with the PropertyPageSite object to return the PropertyPageSite object. The Declarations section of the module implementing the PropertyPage object must contain a declaration similar to the following.

Private myPropertyPageSite As Outlook.PropertyPageSite private Outlook.PropertyPageSite myPropertyPageSite;

The object is then returned from the Parent property of the ActiveX control.

myPropertyPageSite = Parent myPropertyPageSite = Parent;

Use the OnStatusChange() method to notify Microsoft Outlook that the property page has changed.

Properties

Application

Returns an Application object that represents the parent Outlook application for the object. Read-only.

Class

Returns an OlObjectClass constant indicating the object's class. Read-only.

Parent

Returns the parent Object of the specified object. Read-only.

Session

Returns the NameSpace object for the current session. Read-only.

Methods

OnStatusChange()

Notifies Microsoft Outlook that a custom property page has changed.

Applies to