devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
14 lines (13 loc) • 579 B
TypeScript
export declare class StringHelper {
static lastLowSpecial: number;
static firstHighSpecial: number;
static horizontalTabulationCharCode: number;
static newLineCharCode: number;
static carriageReturnCharCode: number;
static recordSeparatorCharCode: number;
static unitSeparatorCharCode: number;
static removeSpecialSymbols(text: string): string;
static replaceParagraphMarksWithLineBreaks(text: string): string;
private static containsParagraphMarksOrUnitSeparators;
static containsSpecialSymbols(text: string): boolean;
}