Link to home
Start Free TrialLog in
Avatar of bullethead
bulletheadFlag for United Kingdom of Great Britain and Northern Ireland

asked on

VBA Property for Private Check Box

I'm struggling to locate the VBA property for the 'Private' check box that appears in the bottom right-hand corner of items in Outlook.

I'm assuming that it will be a property of the AppointmentItem obect - is this correct, or do I have to get at it some other way?
ASKER CERTIFIED SOLUTION
Avatar of jessnjeff
jessnjeff

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of stefri
Sensitivity Property
               

Returns or sets the sensitivity for the Outlook item. Can be one of the following OlSensitivity constants: olConfidential(3), olNormal(0), olPersonal(1), or olPrivate(2). This property corresponds to the MAPI property PR_SENSITIVITY.

Read-only Long for RemoteItem and ReportItem. For all other objects, Read/write Long.

Syntax

object.Sensitivity

object   Required. An expression that returns an item Outlook object that is listed in the "Applies To" list.
Avatar of bullethead

ASKER

Excellent and prompt response as always!  Thank you both.