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

Mark all the documents as Active for deletion whose comma delimited list of document ids is being passed as argument and also set the new folder name (instead of -negative random).

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

Syntax

C#
public ReturnStatus MarkDocumentActive(
	string docIdList,
	int id,
	int userId,
	int groupId
)
Visual Basic (Declaration)
Public Function MarkDocumentActive ( _
	docIdList As String, _
	id As Integer, _
	userId As Integer, _
	groupId As Integer _
) As ReturnStatus
Visual C++
public:
ReturnStatus MarkDocumentActive(
	String^ docIdList, 
	int id, 
	int userId, 
	int groupId
)

Parameters

docIdList
Type: System..::.String
Comma delimited list of document ids which are to be marked as Active and whose folder name is to be updated.
id
Type: System..::.Int32
Id of another OfficeClip object to which all the documents in the delimited list belong. This id is updated as folder name where this document is stored in the file system.
userId
Type: System..::.Int32
The unique id of the user
groupId
Type: System..::.Int32
The unique id of the organiation

Return Value

Enumerated value Utils.ReturnStatus indicating if the operation succeeded or failed. OfficeClip.Utils..::.ReturnStatus

See Also