Parameters
- strRight
- Name of the execute permission to be checked.
Return Value
true: Action is granted execute permission. false: The action must not be executed by the current user.
Example of querying a right
UserRights oUserRights = new UserRights();
bool bRights = oUserRights.CheckUserRights(); // is the user rights management activated?
if (bRights)
{
bool bAnRight= oUserRights.CheckRightFor("XPLEditorStart");
}