FreeBusy Method

Applies To

Recipient object.

Description

Returns free/busy information for the recipient. The default is to return a string representing one month of free/busy information compatible with the Microsoft Schedule+ Automation format (that is, the string contains one character for each MinPerChar minute, up to one month of information from the specified Start date).

If the optional argument CompleteFormat is omitted or False, then "free" is indicated by the character 0 and all other states by the character 1.

If CompleteFormat is True, then the same length string is returned as defined above, but the characters now correspond to the OlBusyStatus constants: olBusy (2), olFree (0), olOutOfOffice (3), or olTentative (1).

Syntax

expression.FreeBusy(Start, MinPerChar, CompleteFormat)

expression An expression that returns a Recipient object.

Start Required Date. The start date for the returned period of free/busy information.

MinPerChar Required Long. The number of minutes per character represented in the returned free/busy string.

CompleteFormat Optional Boolean. True if the returned string should contain not only free/busy information, but also values for each character according to the OlBusyStatus constants: olBusy (2), olFree (0), olOutOfOffice (3), and olTentative (1).

Example

This example returns a string of free/busy information with one character for each day.

Set myRecipient = olNameSpace.CreateRecipient("Paul _
    Borm")
myFBInfo = myRecipient.FreeBusy(#8/1/97#, 60 * 24)
This example returns a string of free/busy information with one character for each hour (complete format).

Set myRecipient = olNameSpace.CreateRecipient("Kevin _
    Yim")
myFBInfo = myRecipient.FreeBusy(#8/1/97#, 60, True)