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

Gets the reminder information of a particular user corresponding to a particular event identified by eventId.

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

Syntax

C#
public void GetEventReminderInfo(
	int userId,
	int eventId,
	DateTime startDatetime,
	ref bool isReminderSelected,
	ref string whoToRemind,
	ref string whenToRemind,
	ref DateTime remindTime
)
Visual Basic (Declaration)
Public Sub GetEventReminderInfo ( _
	userId As Integer, _
	eventId As Integer, _
	startDatetime As DateTime, _
	ByRef isReminderSelected As Boolean, _
	ByRef whoToRemind As String, _
	ByRef whenToRemind As String, _
	ByRef remindTime As DateTime _
)
Visual C++
public:
void GetEventReminderInfo(
	int userId, 
	int eventId, 
	DateTime startDatetime, 
	bool% isReminderSelected, 
	String^% whoToRemind, 
	String^% whenToRemind, 
	DateTime% remindTime
)

Parameters

userId
Type: System..::.Int32
The unique id for the user.
eventId
Type: System..::.Int32
Id of the event for which the reminder information is to be obtained.
startDatetime
Type: System..::.DateTime
Date and Time of the reminder created corresponding to a particular event.
isReminderSelected
Type: System..::.Boolean%
Flag (True/False) indicating whether a reminder is created for this event or not.
whoToRemind
Type: System..::.String%
This tells whether just the person creating the reminder has to be reminded or if it is a group event, all the group members should be reminded.
whenToRemind
Type: System..::.String%
The difference in time (with reference to the event start date and time) when the reminder will be sent.
remindTime
Type: System..::.DateTime%
The remind time

See Also