single_user property

EditableRange.single_user property

Returns or sets the single user for editable range.

@property
def single_user(self) -> str:
    ...

@single_user.setter
def single_user(self, value: str):
    ...

Remarks

This editor can be stored in one of the following forms:

DOMAIN\Username - for users whose access shall be authenticated using the current user’s domain credentials.

user@domain.com - for users whose access shall be authenticated using the user’s e-mail address as credentials.

user - for users whose access shall be authenticated using the current user’s machine credentials.

Single user and editor group cannot be set simultaneously for the specific editable range, if the one is set, the other will be clear.

See Also