UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

17 lines (16 loc) 920 B
import { SubDocument } from '../../model/sub-document'; import { FixedInterval } from '@devexpress/utils/lib/intervals/fixed'; import { CommandBase, CommandOptions } from '../command-base'; import { SimpleCommandState } from '../command-states'; import { ICommandState } from '../i-command'; export declare abstract class ParagraphIndentCommandBase extends CommandBase<SimpleCommandState> { getState(options?: CommandOptions): ICommandState; isEnabled(_options: CommandOptions): boolean; protected getIntervalsForModifying(): FixedInterval[]; getTabs(paragraphIndices: number[], subDocument: SubDocument): number[]; getNearRightDefaultTab(leftIndent: number): number; getNearLeftDefaultTab(leftIndent: number): number; getNearRightTab(leftIndent: number, tabs: number[]): number; getNearLeftTab(leftIndent: number, tabs: number[]): number; private getParagraphTabs; }