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

Inserts an entry in the document history table.

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

Syntax

C#
public void InsertDocumentHistory(
	int userId,
	int documentId,
	DocHistoryStatus dhs
)
Visual Basic (Declaration)
Public Sub InsertDocumentHistory ( _
	userId As Integer, _
	documentId As Integer, _
	dhs As DocHistoryStatus _
)
Visual C++
public:
void InsertDocumentHistory(
	int userId, 
	int documentId, 
	DocHistoryStatus dhs
)

Parameters

userId
Type: System..::.Int32
The unique id of the user inserting the document history.
documentId
Type: System..::.Int32
The id of the document.
dhs
Type: OfficeClip.Utils..::.DocHistoryStatus
The document history status as provided in the DocHistoryStatus enumerated type. OfficeClip.Utils..::.DocHistoryStatus

See Also