devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
20 lines (19 loc) • 878 B
JavaScript
export class AuthenticationOptionsApi {
get userName() {
return this._native.core.modelManager.richOptions.documentProtection.authenticationUserName;
}
set userName(value) {
this._native.core.modelManager.richOptions.documentProtection.authenticationUserName = value;
this._native.core.modelManager.modelManipulator.documentProtectionProperties.raiseProtectionPropertiesChanged();
}
get group() {
return this._native.core.modelManager.richOptions.documentProtection.authenticationGroup;
}
set group(value) {
this._native.core.modelManager.richOptions.documentProtection.authenticationGroup = value;
this._native.core.modelManager.modelManipulator.documentProtectionProperties.raiseProtectionPropertiesChanged();
}
constructor(native) {
this._native = native;
}
}