PropertyPage.Dirty Property

Outlook Developer Reference

Returns True if the contents of a custom property page have been altered. The ActiveX control that implements the PropertyPage object sets the value of this property, and Microsoft Outlook queries this in response to the OnStatusChange method of a PropertyPageSite object. Read-only.

Syntax

expression.Dirty(Dirty)

expression   A variable that represents a PropertyPage object.

Parameters

Name Required/Optional Data Type Description
Dirty Required Boolean

Example

This Visual Basic/Visual Basic for Applications (VBA) example returns the value of the Dirty property as the value of a global variable.

Visual Basic for Applications
  Private Property Get PropertyPage_Dirty() As Boolean
    PropertyPage_Dirty = globDirty
End Property

See Also