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

Gets the Html access string for a combination of the access values

Namespace: OfficeClip.BusinessLayer
Assembly:  OfficeClip.BusinessLayer (in OfficeClip.BusinessLayer.dll)
Version: 7.3.2.0

Syntax

C#
public static string GetHtmlAccessString(
	bool accessRead,
	bool accessWrite,
	bool accessAppend,
	bool accessDelete
)
Visual Basic (Declaration)
Public Shared Function GetHtmlAccessString ( _
	accessRead As Boolean, _
	accessWrite As Boolean, _
	accessAppend As Boolean, _
	accessDelete As Boolean _
) As String
Visual C++
public:
static String^ GetHtmlAccessString (
	bool accessRead, 
	bool accessWrite, 
	bool accessAppend, 
	bool accessDelete
)

Parameters

accessRead
Boolean
Whether the read access is granted
accessWrite
Boolean
Whether the write access is granted
accessAppend
Boolean
Whether the append access is granted
accessDelete
Boolean
Whether the delete access is granted

Return Value

The html string that shows the access permisssion

See Also