[This is preliminary documentation and is subject to change.]
            Gets the reminder information of the currently logged in user corresponding to a particular event identified by eventId.
            
    Namespace: 
   OfficeClip.DBLayer.DesktopAssembly: OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0
Syntax
| C# | 
|---|
public void GetEventReminderInfo( int eventId, DateTime startDatetime, ref bool isReminderSelected, ref string whoToRemind, ref string whenToRemind, ref DateTime remindTime, int userId )  | 
| Visual Basic (Declaration) | 
|---|
Public Sub GetEventReminderInfo ( _ eventId As Integer, _ startDatetime As DateTime, _ ByRef isReminderSelected As Boolean, _ ByRef whoToRemind As String, _ ByRef whenToRemind As String, _ ByRef remindTime As DateTime, _ userId As Integer _ )  | 
| Visual C++ | 
|---|
public: void GetEventReminderInfo( int eventId, DateTime startDatetime, bool% isReminderSelected, String^% whoToRemind, String^% whenToRemind, DateTime% remindTime, int userId )  | 
Parameters
- 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 
- userId
 - Type: System..::.Int32
The unique id of the current user 
