[This is preliminary documentation and is subject to change.]

Gets the event display availability status for a particular user for a particular event identified by eventId.

Namespace:  OfficeClip.DBLayer.Desktop
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public ArrayList GetUserAvailability(
	int userId,
	int eventId
)
Visual Basic (Declaration)
Public Function GetUserAvailability ( _
	userId As Integer, _
	eventId As Integer _
) As ArrayList
Visual C++
public:
ArrayList^ GetUserAvailability(
	int userId, 
	int eventId
)

Parameters

userId
Type: System..::.Int32
The unique id for the user.
eventId
Type: System..::.Int32
Id of the event for which the user's availability has to be determined.

Return Value

Value of the EventShowAs representing whether the user is Busy, Free, Out of Office, or is Tentatively available. OfficeClip.Utils..::.EventShowAs

See Also