RemoveUser
Function to remove a user from the project.
Syntax:
Boolean RemoveUser(String
sUser);
Remove a user of the project.
Params:
String sUser: A String parameter containing the name of the user that will be removed.
Return:
True: if the user was successfully removed.
False: if the user was not successfully removed.
Example:
Remove the user "Viewer" of the project.
SVSecurity.removeUser("Viewer");
|