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

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

Syntax

C#
public void GetFolderChildren(
	int folderId,
	bool isGroupFolder,
	bool isAllRev,
	ref DataTable dtFolder,
	ref DataTable dtDocument,
	ConfigureInfo session
)
Visual Basic (Declaration)
Public Sub GetFolderChildren ( _
	folderId As Integer, _
	isGroupFolder As Boolean, _
	isAllRev As Boolean, _
	ByRef dtFolder As DataTable, _
	ByRef dtDocument As DataTable, _
	session As ConfigureInfo _
)
Visual C++
public:
void GetFolderChildren(
	int folderId, 
	bool isGroupFolder, 
	bool isAllRev, 
	DataTable^% dtFolder, 
	DataTable^% dtDocument, 
	ConfigureInfo^ session
)

Parameters

folderId
Type: System..::.Int32
Id of the folder.
isGroupFolder
Type: System..::.Boolean
Flag (True/False) indicating whether the folder is a group folder.
isAllRev
Type: System..::.Boolean
true if all the revisions needs to be shown
dtFolder
Type: System.Data..::.DataTable%
Datatable schema for the folder output datatable.
dtDocument
Type: System.Data..::.DataTable%
Datatable schema for the document output datatable.
session
Type: OfficeClip.Utils..::.ConfigureInfo
The current login session

See Also