devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
12 lines (11 loc) • 653 B
TypeScript
import { ICloneable, ISupportCopyFrom, SimpleConverter } from '@devexpress/utils/lib/types';
export declare class SectionColumnProperties implements ICloneable<SectionColumnProperties>, ISupportCopyFrom<SectionColumnProperties> {
width: number;
space: number;
constructor(width: number, space: number);
equals(obj: SectionColumnProperties): boolean;
copyFrom(obj: SectionColumnProperties): void;
clone(): SectionColumnProperties;
applyConverter(converter: SimpleConverter<number>): SectionColumnProperties;
static equalsColumnsInfoBinary(a: SectionColumnProperties[], b: SectionColumnProperties[]): boolean;
}