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

Gets the folder id corresponding to the application folder for either a user or a group.

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

Syntax

C#
public int GetApplicationFolderId(
	bool isPrivate,
	int userId,
	int groupId
)
Visual Basic (Declaration)
Public Function GetApplicationFolderId ( _
	isPrivate As Boolean, _
	userId As Integer, _
	groupId As Integer _
) As Integer
Visual C++
public:
int GetApplicationFolderId(
	bool isPrivate, 
	int userId, 
	int groupId
)

Parameters

isPrivate
Type: System..::.Boolean
Flag (True/False) indicating whether the folderId being requested is that of the group or a user.
userId
Type: System..::.Int32
Id of the user whose application folder id is being retrieved. This field's value is ignored when isPrivate is False.
groupId
Type: System..::.Int32
Id of the group whose application folder id is being retrieved. This field's value is ignored when isPrivate is True.

Return Value

Id of the respective application folder.

See Also