devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
18 lines (17 loc) • 575 B
TypeScript
export declare class AutoCorrectSettings {
detectUrls: boolean;
correctTwoInitialCapitals: boolean;
replaceTextAsYouType: boolean;
enableAutomaticNumbering: boolean;
caseSensitiveReplacement: boolean;
replaceInfoCollection: AutoCorrectReplaceInfo[];
constructor();
copyFrom(obj: AutoCorrectSettings): void;
clone(): AutoCorrectSettings;
}
export declare class AutoCorrectReplaceInfo {
replace: string;
with: string;
constructor(whatReplace: string, withReplace: string);
clone(): AutoCorrectReplaceInfo;
}