Back to Devexpress

IAuthenticationSettings Interface

aspnetcore-js-devexpress-dot-richedit-30d8e302.md

latest1.5 KB
Original Source

IAuthenticationSettings Interface

Declares credentials settings used to identify editable ranges in a protected document.

Declaration

ts
export interface IAuthenticationSettings

Properties

group Property

Specifies the name of the group of users with editing permission.

Declaration

ts
group?: string

Property Value

TypeDescription
string

The user group name.

|

Remarks

The Rich Text Editor compares the group property value with the group property of each RangePermission object in a document. If the values are equal or the group value is Everyone, the corresponding document range can be edited.

userName Property

Specifies a username with editing permission.

Declaration

ts
userName?: string

Property Value

TypeDescription
string

The user name.

|

Remarks

The Rich Text Editor compares the userName property value with the userName property of each RangePermission object in a document. If the values are equal, the corresponding document range can be edited.