[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)
Version: 8.1.1.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
Type: System..::.Boolean
Whether the read access is granted
accessWrite
Type: System..::.Boolean
Whether the write access is granted
accessAppend
Type: System..::.Boolean
Whether the append access is granted
accessDelete
Type: System..::.Boolean
Whether the delete access is granted

Return Value

The html string that shows the access permisssion

See Also