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

Updates an existing note

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

Syntax

C#
public void UpdateNote(
	int noteId,
	string note,
	int userId,
	ref DateTime lastModifiedTime
)
Visual Basic (Declaration)
Public Sub UpdateNote ( _
	noteId As Integer, _
	note As String, _
	userId As Integer, _
	ByRef lastModifiedTime As DateTime _
)
Visual C++
public:
void UpdateNote(
	int noteId, 
	String^ note, 
	int userId, 
	DateTime% lastModifiedTime
)

Parameters

noteId
Type: System..::.Int32
The unique id of the note
note
Type: System..::.String
The actual note
userId
Type: System..::.Int32
The unique id of the user
lastModifiedTime
Type: System..::.DateTime%
The last modified time

See Also