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

Provides the ability to update the readonly event, only the busy/free schedule and the reminder settings can be updated in this way

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

Syntax

C#
public int UpdateReadOnlyEvent(
	int id,
	int EventUserId,
	string whenToRemind,
	string whoToRemind,
	EventShowAs showAs,
	ConfigureInfo session
)
Visual Basic (Declaration)
Public Function UpdateReadOnlyEvent ( _
	id As Integer, _
	EventUserId As Integer, _
	whenToRemind As String, _
	whoToRemind As String, _
	showAs As EventShowAs, _
	session As ConfigureInfo _
) As Integer
Visual C++
public:
int UpdateReadOnlyEvent(
	int id, 
	int EventUserId, 
	String^ whenToRemind, 
	String^ whoToRemind, 
	EventShowAs showAs, 
	ConfigureInfo^ session
)

Parameters

id
Type: System..::.Int32
The unique id of the event
EventUserId
Type: System..::.Int32
The id of the user for whom the event was originally created
whenToRemind
Type: System..::.String
When the events is required to be reminded
whoToRemind
Type: System..::.String
Who needs to be reminded for this event
showAs
Type: OfficeClip.Utils..::.EventShowAs
How the free/busy schedule will be shown as
session
Type: OfficeClip.Utils..::.ConfigureInfo
The current login session

Return Value

eventid if success, -1 if error

See Also