Skip to content

Latest commit

 

History

History
54 lines (32 loc) · 1.47 KB

Outlook.PropertyPage.Dirty.md

File metadata and controls

54 lines (32 loc) · 1.47 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
PropertyPage.Dirty property (Outlook)
vbaol11.chm382
vbaol11.chm382
Outlook.PropertyPage.Dirty
fb654f40-9b80-654c-395a-811923dfb903
06/08/2017
medium

PropertyPage.Dirty property (Outlook)

Returns a Boolean value that indicates whether the contents of a custom property page have been altered. Read-only.

Syntax

expression.Dirty (Dirty)

expression A variable that represents a PropertyPage object.

Parameters

Name Required/Optional Data type Description
Dirty Required Boolean True indicates that the contents of a custom property page has been altered.

Remarks

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.

Example

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

Private Property Get PropertyPage_Dirty() As Boolean 
 PropertyPage_Dirty = globDirty 
End Property

See also

PropertyPage Object

[!includeSupport and feedback]