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

Gets the used disk space for an account

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

Syntax

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

Parameters

accountId
Type: System..::.Int32
The database generated id of the account
permittedSpace
Type: System..::.Double%
The permitted space for the account
usedSpace
Type: System..::.Double%
The used space for the account

Return Value

The status that determines if the operation was successful

See Also