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

Removes a particular group's bookmark indentified by htmlId.

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

Syntax

C#
public void Delete(
	int userId,
	int groupId,
	int htmlId
)
Visual Basic (Declaration)
Public Sub Delete ( _
	userId As Integer, _
	groupId As Integer, _
	htmlId As Integer _
)
Visual C++
public:
void Delete(
	int userId, 
	int groupId, 
	int htmlId
)

Parameters

userId
Type: System..::.Int32
The unique id of the user
groupId
Type: System..::.Int32
The unique id of the group.
htmlId
Type: System..::.Int32
Id of the bookmark which needs to be deleted from the database. Please note that this bookmark should belong the group whose GroupId is passed as argument.

See Also