devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
11 lines (10 loc) • 425 B
JavaScript
import { ParagraphPropertyDescriptor } from '../../model/paragraph/paragraph-properties';
import { ChangeParagraphPropertiesCommandBase } from './change-paragraph-properties-command-base';
export class ChangeHeadingLevelCommand extends ChangeParagraphPropertiesCommandBase {
getDescriptor() {
return ParagraphPropertyDescriptor.outlineLevel;
}
isLockUpdateValue() {
return true;
}
}