devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
39 lines (38 loc) • 922 B
JavaScript
export class StringResources {
headerFooter;
seqCaptionPrefixes;
commonLabels;
quickSearchPanel;
constructor() {
this.headerFooter = new HeaderFooterStringResources();
this.seqCaptionPrefixes = new SeqCaptionPrefixes();
this.commonLabels = new CommonLabels();
this.quickSearchPanel = new QuickSearchPanelStringResources();
}
}
export class HeaderFooterStringResources {
header;
footer;
firstPageHeader;
firstPageFooter;
evenPageHeader;
evenPageFooter;
oddPageHeader;
oddPageFooter;
sameAsPrevious;
}
export class SeqCaptionPrefixes {
figurePrefix;
equationPrefix;
tablePrefix;
}
export class CommonLabels {
noTocEntriesFound;
clickToFollowHyperlink;
currentDocumentHyperlinkTooltip;
}
export class QuickSearchPanelStringResources {
items;
noMatches;
of;
}