UNPKG

devexpress-richedit

Version:

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

44 lines (43 loc) 1.79 kB
export class Characters { static { this.Dot = '.'; } static { this.EnDash = '–'; } static { this.Bullet = '•'; } static { this.LeftSingleQuote = '‘'; } static { this.RightSingleQuote = '’'; } static { this.LeftDoubleQuote = '“'; } static { this.RightDoubleQuote = '”'; } static { this.PilcrowSign = '¶'; } static { this.CurrencySign = '¤'; } static { this.CopyrightSymbol = '©'; } static { this.TrademarkSymbol = '™'; } static { this.OptionalHyphen = '­'; } static { this.RegisteredTrademarkSymbol = '®'; } static { this.Ellipsis = '…'; } static { this.OpeningSingleQuotationMark = '‘'; } static { this.ClosingSingleQuotationMark = '’'; } static { this.OpeningDoubleQuotationMark = '“'; } static { this.ClosingDoubleQuotationMark = '”'; } static { this.EmDash = '—'; } static { this.SeparatorMark = '|'; } static { this.FloatingObjectMark = '\b'; } static { this.ColumnBreak = '\u000e'; } static { this.Colon = ':'; } static { this.Underscore = '_'; } static { this.EqualSign = '='; } static { this.MiddleDot = '·'; } static { this.Dash = '-'; } static { this.ParagraphMark = '\r'; } static { this.SectionMark = '\u001d'; } static { this.Hyphen = '\u001f'; } static { this.TabMark = '\t'; } static { this.NonBreakingSpace = ' '; } static { this.Space = ' '; } static { this.EmSpace = ' '; } static { this.EnSpace = ' '; } static { this.QmSpace = ' '; } static { this.ZeroWidthSpace = '​'; } static { this.LineBreak = '\v'; } static { this.PageBreak = '\f'; } static { this.ObjectMark = ''; } static { this.CanadianSyllabicsChiSign = '᙭'; } }