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

Gets the space related to a group. If the group space information is not present, then it is created using default value specified in web.config.

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

Syntax

C#
public ReturnStatus GetGroupSpace(
	int groupId,
	int userId,
	ref double usedSpace
)
Visual Basic (Declaration)
Public Function GetGroupSpace ( _
	groupId As Integer, _
	userId As Integer, _
	ByRef usedSpace As Double _
) As ReturnStatus
Visual C++
public:
ReturnStatus GetGroupSpace(
	int groupId, 
	int userId, 
	double% usedSpace
)

Parameters

groupId
Type: System..::.Int32
The id of the group for which the document space information is to be obtained
userId
Type: System..::.Int32
Id of the user creating the group space information.
usedSpace
Type: System..::.Double%
Total used space in MB

Return Value

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

See Also