devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
778 lines (777 loc) • 45.4 kB
JavaScript
import { MapCreator } from '../../../utils/map-creator';
import { ThemeColorValues } from '../../../model/color/enums';
import { ShadingPattern } from '../../../model/shadings/shading-pattern';
export class RtfExportSR {
static { this.ShadingPatternTable = createShadingPatternTable(); }
static { this.RunShadingPatternTable = createRunShadingPatternTable(); }
static { this.TableCellShadingPatternTable = createTableCellShadingPatternTable(); }
static { this.TableStyleShadingPatternTable = createTableStyleShadingPatternTable(); }
static { this.ThemeColorValuesTable = createThemeColorValuesTable(); }
static { this.OpenGroup = "{"; }
static { this.CloseGroup = "}"; }
static { this.RtfSignature = "\\rtf1"; }
static { this.DefaultFontIndex = "\\deff"; }
static { this.StyleTable = "\\stylesheet"; }
static { this.ColorTable = "\\colortbl"; }
static { this.FontTable = "\\fonttbl"; }
static { this.FontCharset = "\\fcharset"; }
static { this.UserTable = "\\*\\protusertbl"; }
static { this.ColorSchemeMapping = "\\*\\colorschememapping"; }
static { this.ThemeData = "\\*\\themedata"; }
static { this.DocumentInformation = "\\info"; }
static { this.Password = "\\*\\password"; }
static { this.PasswordHash = "\\*\\passwordhash"; }
static { this.EnforceProtection = "\\enforceprot"; }
static { this.AnnotationProtection = "\\annotprot"; }
static { this.ReadOnlyProtection = "\\readprot"; }
static { this.ProtectionLevel = "\\protlevel"; }
static { this.NoUICompatible = "\\nouicompat"; }
static { this.UnicodeAndANSIGroup = "\\upr"; }
static { this.UnicodeGroup = "\\*\\ud"; }
static { this.Category = "\\*\\category"; }
static { this.Title = "\\title"; }
static { this.Subject = "\\subject"; }
static { this.Author = "\\author"; }
static { this.Keywords = "\\keywords"; }
static { this.Description = "\\doccomm"; }
static { this.LastModifiedBy = "\\operator"; }
static { this.Created = "\\creatim"; }
static { this.Modified = "\\revtim"; }
static { this.LastPrinted = "\\printim"; }
static { this.Revision = "\\version"; }
static { this.Year = "\\yr"; }
static { this.Month = "\\mo"; }
static { this.Day = "\\dy"; }
static { this.Hour = "\\hr"; }
static { this.Minute = "\\min"; }
static { this.CustomProperties = "\\*\\userprops"; }
static { this.CustomPropertyName = "\\propname"; }
static { this.CustomPropertyType = "\\proptype"; }
static { this.CustomPropertyLinkTarget = "\\linkval"; }
static { this.CustomPropertyValue = "\\staticval"; }
static { this.DefaultTabWidth = "\\deftab"; }
static { this.MirrorMargins = "\\margmirror"; }
static { this.HyphenateDocument = "\\hyphauto"; }
static { this.PageFacing = "\\facingp"; }
static { this.DisplayBackgroundShape = "\\viewbksp"; }
static { this.RemovePersonalInformation = "\\rempersonalinfo"; }
static { this.CompatibilityNoColumnBalance = "\\nocolbal"; }
static { this.CompatibilityDoNotAlignTableRowsIndependently = "\\alntblind"; }
static { this.CompatibilityDontJustifyLinesEndingInSoftLineBreak = "\\expshrtn"; }
static { this.CompatibilitySplitPageBreakAndParagraphMark = "\\spltpgpar"; }
static { this.CompatibilityAllowTablesToExtendIntoMargin = "\\nogrowautofit"; }
static { this.ColorRed = "\\red"; }
static { this.ColorGreen = "\\green"; }
static { this.ColorBlue = "\\blue"; }
static { this.ThemeColorTint = "\\ctint"; }
static { this.ThemeColorShade = "\\cshade"; }
static { this.ResetParagraphProperties = "\\pard"; }
static { this.FrameHorizontalPosition = "\\posx"; }
static { this.FrameVerticalPosition = "\\posy"; }
static { this.FrameNegativeHorizontalPosition = "\\posnegx"; }
static { this.FrameNegativeVerticalPosition = "\\posnegy"; }
static { this.FrameWidth = "\\absw"; }
static { this.FrameHeight = "\\absh"; }
static { this.FrameVerticalPadding = "\\dfrmtxty"; }
static { this.FrameHorizontalPadding = "\\dfrmtxtx"; }
static { this.FrameLockAnchor = "\\abslock"; }
static { this.FrameNoWrap = "\\nowrap"; }
static { this.FrameWrapOverlay = "\\overlay"; }
static { this.FrameWrapDefault = "\\wrapdefault"; }
static { this.FrameWrapAround = "\\wraparound"; }
static { this.FrameWrapTight = "\\wraptight"; }
static { this.FrameWrapThrough = "\\wrapthrough"; }
static { this.FrameHorizontalPositionAlignmentCenter = "\\posxc"; }
static { this.FrameHorizontalPositionAlignmentLeft = "\\posxl"; }
static { this.FrameHorizontalPositionAlignmentRight = "\\posxr"; }
static { this.FrameHorizontalPositionAlignmentInside = "\\posxi"; }
static { this.FrameHorizontalPositionAlignmentOutside = "\\posxo"; }
static { this.FrameVerticalPositionAlignmentCenter = "\\posyc"; }
static { this.FrameVerticalPositionAlignmentTop = "\\posyt"; }
static { this.FrameVerticalPositionAlignmentBottom = "\\posyb"; }
static { this.FrameVerticalPositionAlignmentInside = "\\posyin"; }
static { this.FrameVerticalPositionAlignmentOutside = "\\posyout"; }
static { this.TopParagraphBorder = "\\brdrt"; }
static { this.BottomParagraphBorder = "\\brdrb"; }
static { this.LeftParagraphBorder = "\\brdrl"; }
static { this.RightParagraphBorder = "\\brdrr"; }
static { this.BetweenParagraphBorder = "\\brdrbtw"; }
static { this.ParagraphHorizontalPositionTypeMargin = "\\phmrg"; }
static { this.ParagraphHorizontalPositionTypePage = "\\phpg"; }
static { this.ParagraphHorizontalPositionTypeColumn = "\\phcol"; }
static { this.ParagraphVerticalPositionTypeMargin = "\\pvmrg"; }
static { this.ParagraphVerticalPositionTypePage = "\\pvpg"; }
static { this.ParagraphVerticalPositionTypeLine = "\\pvpara"; }
static { this.ResetCharacterFormatting = "\\plain"; }
static { this.EndOfParagraph = "\\par"; }
static { this.LeftAlignment = "\\ql"; }
static { this.RightAlignment = "\\qr"; }
static { this.CenterAlignment = "\\qc"; }
static { this.JustifyAlignment = "\\qj"; }
static { this.FirstLineIndentInTwips = "\\fi"; }
static { this.LeftIndentInTwips = "\\li"; }
static { this.LeftIndentInTwips_Lin = "\\lin"; }
static { this.RightIndentInTwips = "\\ri"; }
static { this.RightIndentInTwips_Rin = "\\rin"; }
static { this.AutomaticParagraphHyphenation = "\\hyphpar"; }
static { this.SuppressLineNumbering = "\\noline"; }
static { this.ContextualSpacing = "\\contextualspace"; }
static { this.PageBreakBefore = "\\pagebb"; }
static { this.BeforeAutoSpacing = "\\sbauto"; }
static { this.AfterAutoSpacing = "\\saauto"; }
static { this.KeepWithNext = "\\keepn"; }
static { this.KeepLinesTogether = "\\keep"; }
static { this.WidowOrphanControlOn = "\\widctlpar"; }
static { this.WidowOrphanControlOff = "\\nowidctlpar"; }
static { this.OutlineLevel = "\\outlinelevel"; }
static { this.ParagraphShading = "\\shading"; }
static { this.ParagraphFillColor = "\\cfpat"; }
static { this.ParagraphBackgroundColor = "\\cbpat"; }
static { this.RtfLineSpacingValue = "\\sl"; }
static { this.RtfLineSpacingMultiple = "\\slmult"; }
static { this.SpaceBefore = "\\sb"; }
static { this.SpaceAfter = "\\sa"; }
static { this.ListIndex = "\\ls"; }
static { this.LevelIndex = "\\ilvl"; }
static { this.AlternativeText = "\\listtext"; }
static { this.ParagraphNumerationText = "\\*\\pntext"; }
static { this.CenteredTab = "\\tqc"; }
static { this.DecimalTab = "\\tqdec"; }
static { this.FlushRightTab = "\\tqr"; }
static { this.NumberingTab = "\\jclisttab"; }
static { this.TabLeaderDots = "\\tldot"; }
static { this.TabLeaderEqualSign = "\\tleq"; }
static { this.TabLeaderHyphens = "\\tlhyph"; }
static { this.TabLeaderMiddleDots = "\\tlmdot"; }
static { this.TabLeaderThickLine = "\\tlth"; }
static { this.TabLeaderUnderline = "\\tlul"; }
static { this.TabPosition = "\\tx"; }
static { this.AllCapitals = "\\caps"; }
static { this.SmallCapitals = "\\scaps"; }
static { this.LangInfo = "\\lang"; }
static { this.LangInfo1 = "\\langfe"; }
static { this.LangInfo2 = "\\langnp"; }
static { this.LangInfo3 = "\\langfenp"; }
static { this.NoProof = "\\noproof"; }
static { this.HiddenText = "\\v"; }
static { this.FontBold = "\\b"; }
static { this.FontItalic = "\\i"; }
static { this.FontStrikeout = "\\strike"; }
static { this.FontDoubleStrikeout = "\\striked1"; }
static { this.FontUnderline = "\\ul"; }
static { this.FontUnderlineDotted = "\\uld"; }
static { this.FontUnderlineDashed = "\\uldash"; }
static { this.FontUnderlineDashDotted = "\\uldashd"; }
static { this.FontUnderlineDashDotDotted = "\\uldashdd"; }
static { this.FontUnderlineDouble = "\\uldb"; }
static { this.FontUnderlineHeavyWave = "\\ulhwave"; }
static { this.FontUnderlineLongDashed = "\\ulldash"; }
static { this.FontUnderlineThickSingle = "\\ulth"; }
static { this.FontUnderlineThickDotted = "\\ulthd"; }
static { this.FontUnderlineThickDashed = "\\ulthdash"; }
static { this.FontUnderlineThickDashDotted = "\\ulthdashd"; }
static { this.FontUnderlineThickDashDotDotted = "\\ulthdashdd"; }
static { this.FontUnderlineThickLongDashed = "\\ulthldash"; }
static { this.FontUnderlineDoubleWave = "\\ululdbwave"; }
static { this.FontUnderlineWave = "\\ulwave"; }
static { this.FontUnderlineWordsOnly = "\\ulw"; }
static { this.FontNumber = "\\f"; }
static { this.FontSize = "\\fs"; }
static { this.RunShadingPattern = "\\chshdng"; }
static { this.RunFillColor = "\\chcfpat"; }
static { this.RunBackgroundColor = "\\chcbpat"; }
static { this.RunHighlightColor = "\\highlight"; }
static { this.RunForegroundColor = "\\cf"; }
static { this.RunUnderlineColor = "\\ulc"; }
static { this.RunSuperScript = "\\super"; }
static { this.RunSubScript = "\\sub"; }
static { this.Picture = "\\pict"; }
static { this.PictureWidth = "\\picw"; }
static { this.PictureHeight = "\\pich"; }
static { this.PictureDesiredWidth = "\\picwgoal"; }
static { this.PictureDesiredHeight = "\\pichgoal"; }
static { this.PictureScaleX = "\\picscalex"; }
static { this.PictureScaleY = "\\picscaley"; }
static { this.PictureCropLeft = "\\piccropl"; }
static { this.PictureCropTop = "\\piccropt"; }
static { this.PictureCropRight = "\\piccropr"; }
static { this.PictureCropBottom = "\\piccropb"; }
static { this.ShapePicture = "\\*\\shppict"; }
static { this.NonShapePicture = "\\nonshppict"; }
static { this.DxImageUri = "\\*\\dximageuri"; }
static { this.PictureProperties = "\\*\\picprop"; }
static { this.Defshp = "\\defshp"; }
static { this.PNGPictureKeyword = "\\pngblip"; }
static { this.JpegPictureKeyword = "\\jpegblip"; }
static { this.Space = " "; }
static { this.CLRF = "\\r\\n"; }
static { this.ResetSectionProperties = "\\sectd"; }
static { this.SectionEndMark = "\\sect"; }
static { this.SectionMarginsLeft = "\\marglsxn"; }
static { this.SectionMarginsRight = "\\margrsxn"; }
static { this.SectionMarginsTop = "\\margtsxn"; }
static { this.SectionMarginsBottom = "\\margbsxn"; }
static { this.SectionMarginsHeaderOffset = "\\headery"; }
static { this.SectionMarginsFooterOffset = "\\footery"; }
static { this.SectionMarginsGutter = "\\guttersxn"; }
static { this.SectionFirstPageHeader = "\\headerf"; }
static { this.SectionOddPageHeader = "\\headerr"; }
static { this.SectionEvenPageHeader = "\\headerl"; }
static { this.SectionFirstPageFooter = "\\footerf"; }
static { this.SectionOddPageFooter = "\\footerr"; }
static { this.SectionEvenPageFooter = "\\footerl"; }
static { this.SectionPageWidth = "\\pgwsxn"; }
static { this.SectionPageHeight = "\\pghsxn"; }
static { this.SectionPageLandscape = "\\lndscpsxn"; }
static { this.PaperKind = "\\psz"; }
static { this.SectionFirstPagePaperSource = "\\binfsxn"; }
static { this.SectionOtherPagePaperSource = "\\binsxn"; }
static { this.SectionOnlyAllowEditingOfFormFields = "\\sectunlocked"; }
static { this.SectionTextFlow = "\\stextflow"; }
static { this.SectionTitlePage = "\\titlepg"; }
static { this.VerticalAlignmentBottom = "\\vertal\\vertalb"; }
static { this.VerticalAlignmentTop = "\\vertalt"; }
static { this.VerticalAlignmentCenter = "\\vertalc"; }
static { this.VerticalAlignmentJustify = "\\vertalj"; }
static { this.SectionBreakTypeNextPage = "\\sbkpage"; }
static { this.SectionBreakTypeOddPage = "\\sbkodd"; }
static { this.SectionBreakTypeEvenPage = "\\sbkeven"; }
static { this.SectionBreakTypeColumn = "\\sbkcol"; }
static { this.SectionBreakTypeContinuous = "\\sbknone"; }
static { this.SectionChapterSeparatorHyphen = "\\pgnhnsh"; }
static { this.SectionChapterSeparatorPeriod = "\\pgnhnsp"; }
static { this.SectionChapterSeparatorColon = "\\pgnhnsc"; }
static { this.SectionChapterSeparatorEmDash = "\\pgnhnsm"; }
static { this.SectionChapterSeparatorEnDash = "\\pgnhnsn"; }
static { this.SectionChapterHeaderStyle = "\\pgnhn"; }
static { this.SectionPageNumberingStart = "\\pgnstarts"; }
static { this.SectionPageNumberingContinuous = "\\pgncont"; }
static { this.SectionPageNumberingRestart = "\\pgnrestart"; }
static { this.SectionPageNumberingDecimal = "\\pgndec"; }
static { this.SectionPageNumberingUpperRoman = "\\pgnucrm"; }
static { this.SectionPageNumberingLowerRoman = "\\pgnlcrm"; }
static { this.SectionPageNumberingUpperLetter = "\\pgnucltr"; }
static { this.SectionPageNumberingLowerLetter = "\\pgnlcltr"; }
static { this.SectionPageNumberingArabicAbjad = "\\pgnbidia"; }
static { this.SectionPageNumberingArabicAlpha = "\\pgnbidib"; }
static { this.SectionPageNumberingChosung = "\\pgnchosung"; }
static { this.SectionPageNumberingDecimalEnclosedCircle = "\\pgncnum"; }
static { this.SectionPageNumberingDecimalFullWidth = "\\pgndecd"; }
static { this.SectionPageNumberingGanada = "\\pgnganada"; }
static { this.SectionPageNumberingHindiVowels = "\\pgnhindia"; }
static { this.SectionPageNumberingHindiConsonants = "\\pgnhindib"; }
static { this.SectionPageNumberingHindiNumbers = "\\pgnhindic"; }
static { this.SectionPageNumberingHindiDescriptive = "\\pgnhindid"; }
static { this.SectionPageNumberingThaiLetters = "\\pgnthaia"; }
static { this.SectionPageNumberingThaiNumbers = "\\pgnthaib"; }
static { this.SectionPageNumberingThaiDescriptive = "\\pgnthaic"; }
static { this.SectionPageNumberingVietnameseDescriptive = "\\pgnvieta"; }
static { this.SectionLineNumberingContinuous = "\\linecont"; }
static { this.SectionLineNumberingStart = "\\linestarts"; }
static { this.SectionLineNumberingRestartNewPage = "\\lineppage"; }
static { this.SectionLineNumberingRestartNewSection = "\\linerestart"; }
static { this.SectionLineNumberingCountBy = "\\linemod"; }
static { this.SectionLineNumberingDistance = "\\linex"; }
static { this.SectionColumnsCount = "\\cols"; }
static { this.SectionSpaceBetweenColumns = "\\colsx"; }
static { this.SectionColumnsDrawVerticalSeparator = "\\linebetcol"; }
static { this.SectionColumnNumber = "\\colno"; }
static { this.SectionColumnWidth = "\\colw"; }
static { this.SectionColumnSpace = "\\colsr"; }
static { this.SectionFootNotePlacementBelowText = "\\sftntj"; }
static { this.SectionFootNotePlacementPageBottom = "\\sftnbj"; }
static { this.SectionFootNoteNumberingStart = "\\sftnstart"; }
static { this.SectionFootNoteNumberingRestartEachPage = "\\sftnrstpg"; }
static { this.SectionFootNoteNumberingRestartEachSection = "\\sftnrestart"; }
static { this.SectionFootNoteNumberingRestartContinuous = "\\sftnrstcont"; }
static { this.SectionFootNoteNumberingFormatDecimal = "\\sftnnar"; }
static { this.SectionFootNoteNumberingFormatUpperRoman = "\\sftnnruc"; }
static { this.SectionFootNoteNumberingFormatLowerRoman = "\\sftnnrlc"; }
static { this.SectionFootNoteNumberingFormatUpperLetter = "\\sftnnauc"; }
static { this.SectionFootNoteNumberingFormatLowerLetter = "\\sftnnalc"; }
static { this.SectionFootNoteNumberingFormatChicago = "\\sftnnchi"; }
static { this.SectionFootNoteNumberingFormatChosung = "\\sftnnchosung"; }
static { this.SectionFootNoteNumberingFormatDecimalEnclosedCircle = "\\sftnncnum"; }
static { this.SectionFootNoteNumberingFormatDecimalFullWidth = "\\sftnndbar"; }
static { this.SectionFootNoteNumberingFormatGanada = "\\sftnnganada"; }
static { this.SectionEndNoteNumberingStart = "\\saftnstart"; }
static { this.SectionEndNoteNumberingRestartEachSection = "\\saftnrestart"; }
static { this.SectionEndNoteNumberingRestartContinuous = "\\saftnrstcont"; }
static { this.SectionEndNoteNumberingFormatDecimal = "\\saftnnar"; }
static { this.SectionEndNoteNumberingFormatUpperRoman = "\\saftnnruc"; }
static { this.SectionEndNoteNumberingFormatLowerRoman = "\\saftnnrlc"; }
static { this.SectionEndNoteNumberingFormatUpperLetter = "\\saftnnauc"; }
static { this.SectionEndNoteNumberingFormatLowerLetter = "\\saftnnalc"; }
static { this.SectionEndNoteNumberingFormatChicago = "\\saftnnchi"; }
static { this.SectionEndNoteNumberingFormatChosung = "\\saftnnchosung"; }
static { this.SectionEndNoteNumberingFormatDecimalEnclosedCircle = "\\saftnncnum"; }
static { this.SectionEndNoteNumberingFormatDecimalFullWidth = "\\saftnndbar"; }
static { this.SectionEndNoteNumberingFormatGanada = "\\saftnnganada"; }
static { this.LegacyPaperWidth = "\\paperw"; }
static { this.LegacyPaperHeight = "\\paperh"; }
static { this.LegacyLandscape = "\\landscape"; }
static { this.LegacyPageNumberingStart = "\\pgnstart"; }
static { this.LegacyMarginsLeft = "\\margl"; }
static { this.LegacyMarginsRight = "\\margr"; }
static { this.LegacyMarginsTop = "\\margt"; }
static { this.LegacyMarginsBottom = "\\margb"; }
static { this.LegacyMarginsGutter = "\\gutter"; }
static { this.LegacyMarginsGutterAtRight = "\\rtlgutter"; }
static { this.FootNotePlacementBelowText = "\\ftntj"; }
static { this.FootNotePlacementPageBottom = "\\ftnbj"; }
static { this.FootNoteNumberingStart = "\\ftnstart"; }
static { this.FootNoteNumberingRestartEachPage = "\\ftnrstpg"; }
static { this.FootNoteNumberingRestartEachSection = "\\ftnrestart"; }
static { this.FootNoteNumberingRestartContinuous = "\\ftnrstcont"; }
static { this.FootNoteNumberingFormatDecimal = "\\ftnnar"; }
static { this.FootNoteNumberingFormatUpperRoman = "\\ftnnruc"; }
static { this.FootNoteNumberingFormatLowerRoman = "\\ftnnrlc"; }
static { this.FootNoteNumberingFormatUpperLetter = "\\ftnnauc"; }
static { this.FootNoteNumberingFormatLowerLetter = "\\ftnnalc"; }
static { this.FootNoteNumberingFormatChicago = "\\ftnnchi"; }
static { this.FootNoteNumberingFormatChosung = "\\ftnnchosung"; }
static { this.FootNoteNumberingFormatDecimalEnclosedCircle = "\\ftnncnum"; }
static { this.FootNoteNumberingFormatDecimalFullWidth = "\\ftnndbar"; }
static { this.FootNoteNumberingFormatGanada = "\\ftnnganada"; }
static { this.EndNotePlacementEndOfSection = "\\aendnotes"; }
static { this.EndNotePlacementEndOfDocument = "\\aenddoc"; }
static { this.EndNoteNumberingStart = "\\aftnstart"; }
static { this.EndNoteNumberingRestartEachSection = "\\aftnrestart"; }
static { this.EndNoteNumberingRestartContinuous = "\\aftnrstcont"; }
static { this.EndNoteNumberingFormatDecimal = "\\aftnnar"; }
static { this.EndNoteNumberingFormatUpperRoman = "\\aftnnruc"; }
static { this.EndNoteNumberingFormatLowerRoman = "\\aftnnrlc"; }
static { this.EndNoteNumberingFormatUpperLetter = "\\aftnnauc"; }
static { this.EndNoteNumberingFormatLowerLetter = "\\aftnnalc"; }
static { this.EndNoteNumberingFormatChicago = "\\aftnnchi"; }
static { this.EndNoteNumberingFormatChosung = "\\aftnnchosung"; }
static { this.EndNoteNumberingFormatDecimalEnclosedCircle = "\\aftnncnum"; }
static { this.EndNoteNumberingFormatDecimalFullWidth = "\\aftnndbar"; }
static { this.EndNoteNumberingFormatGanada = "\\aftnnganada"; }
static { this.Field = "\\field"; }
static { this.FieldLocked = "\\fldlock"; }
static { this.FieldInstructions = "\\*\\fldinst"; }
static { this.FieldResult = "\\fldrslt"; }
static { this.FieldCodeView = "\\dxfldcodeview"; }
static { this.FieldEdit = "\\fldedit"; }
static { this.FormField = "\\*\\formfield"; }
static { this.FormFieldType = "\\fftype"; }
static { this.FormFieldListFieldResult = "\\ffres"; }
static { this.FormFieldProtected = "\\ffprot"; }
static { this.FormFieldCheckBoxFieldSizeType = "\\ffsize"; }
static { this.FormFieldCalculatedOnExit = "\\ffrecalc"; }
static { this.FormFieldCheckBoxFieldSize = "\\ffhps"; }
static { this.FormFieldName = "\\*\\ffname"; }
static { this.FormFieldListFieldDefault = "\\ffdefres"; }
static { this.FormFieldHelpTextCustom = "\\ffownhelp"; }
static { this.FormFieldHelpText = "\\*\\ffhelptext"; }
static { this.FormFieldStatusBarTextCustom = "\\ffownstat"; }
static { this.FormFieldStatusBarText = "\\*\\ffstattext"; }
static { this.FormFieldEntryMacro = "\\*\\ffentrymcr"; }
static { this.FormFieldExitMacro = "\\*\\ffexitmcr"; }
static { this.FieldMapData = "\\*\\mmodsofldmpdata"; }
static { this.FieldTypeNull = "\\mmfttypenull"; }
static { this.FieldTypeColumn = "\\mmfttypedbcolumn"; }
static { this.FieldTypeAddress = "\\mmfttypeaddress"; }
static { this.FieldTypeSalutation = "\\mmfttypesalutation"; }
static { this.FieldTypeMapped = "\\mmfttypemapped"; }
static { this.FieldTypeBarcode = "\\mmfttypebarcode"; }
static { this.MailMergeDataSourceObjectName = "\\mmodsoname"; }
static { this.MailMergeDataSourceObjectMappedName = "\\mmodsomappedname"; }
static { this.MailMergeDataSourceObjectColumnIndex = "\\mmodsofmcolumn"; }
static { this.MailMergeDataSourceObjectDynamicAddress = "\\mmodsodynaddr"; }
static { this.MailMergeDataSourceObjectLanguageId = "\\mmodsolid"; }
static { this.BookmarkStart = "\\*\\bkmkstart"; }
static { this.BookmarkEnd = "\\*\\bkmkend"; }
static { this.RangePermissionStart = "\\*\\protstart"; }
static { this.RangePermissionEnd = "\\*\\protend"; }
static { this.CommentStart = "\\*\\atrfstart"; }
static { this.CommentEnd = "\\*\\atrfend"; }
static { this.CommentId = "\\*\\atnid"; }
static { this.CommentAuthor = "\\*\\atnauthor"; }
static { this.CommentTime = "\\*\\atntime"; }
static { this.CommentChatn = "\\chatn"; }
static { this.CommentAnnotation = "\\*\\annotation"; }
static { this.CommentDate = "\\*\\atndate"; }
static { this.CommentRef = "\\*\\atnref"; }
static { this.CommentParent = "\\*\\atnparent"; }
static { this.HyperlinkFieldType = "HYPERLINK"; }
static { this.DocumentVariable = "\\*\\docvar"; }
static { this.FootNote = "\\footnote"; }
static { this.FootNoteReference = "\\chftn"; }
static { this.EndNote = "\\ftnalt"; }
static { this.PageBackground = "\\*\\background"; }
static { this.Shape = "\\shp"; }
static { this.ShapeInstance = "\\*\\shpinst"; }
static { this.ShapeText = "\\shptxt"; }
static { this.ShapeLeft = "\\shpleft"; }
static { this.ShapeRight = "\\shpright"; }
static { this.ShapeTop = "\\shptop"; }
static { this.ShapeBottom = "\\shpbottom"; }
static { this.ShapeZOrder = "\\shpz"; }
static { this.ShapeLegacyHorizontalPositionTypePage = "\\shpbxpage"; }
static { this.ShapeLegacyHorizontalPositionTypeMargin = "\\shpbxmargin"; }
static { this.ShapeLegacyHorizontalPositionTypeColumn = "\\shpbxcolumn"; }
static { this.ShapeIgnoreLegacyHorizontalPositionType = "\\shpbxignore"; }
static { this.ShapeLegacyVerticalPositionTypePage = "\\shpbypage"; }
static { this.ShapeLegacyVerticalPositionTypeMargin = "\\shpbymargin"; }
static { this.ShapeLegacyVerticalPositionTypeParagraph = "\\shpbypara"; }
static { this.ShapeIgnoreLegacyVerticalPositionType = "\\shpbyignore"; }
static { this.ShapeWrapTextType = "\\shpwr"; }
static { this.ShapeWrapTextTypeZOrder = "\\shpfblwtxt"; }
static { this.ShapeWrapTextSide = "\\shpwrk"; }
static { this.ShapeLocked = "\\shplockanchor"; }
static { this.ShapeProperty = "\\sp"; }
static { this.ShapePropertyName = "\\sn"; }
static { this.ShapePropertyValue = "\\sv"; }
static { this.ShapeResult = "\\shprslt"; }
static { this.ShapeDoNotLay = "\\splytwnine"; }
static { this.ShapeHyperlink = "\\*\\hl"; }
static { this.ShapeHyperlinkFrame = "\\hlfr"; }
static { this.ShapeHyperlinkSource = "\\hlsrc"; }
static { this.ShapeHyperlinkLocation = "\\hlloc"; }
static { this.HtmlAutoSpacing = "\\htmautsp"; }
static { this.CustomRunData = "\\*\\dxcustomrundata"; }
static { this.ParagraphGroupPropertiesTable = "\\*\\pgptbl"; }
static { this.ParagraphGroupProperties = "\\pgp"; }
static { this.ParagraphGroupPropertiesId = "\\ipgp"; }
static { this.ResetTableProperties = "\\trowd"; }
static { this.InTableParagraph = "\\intbl"; }
static { this.TableEndCell = "\\cell"; }
static { this.NestedTableEndCell = "\\nestcell"; }
static { this.TableEndRow = "\\row"; }
static { this.NestedTableEndRow = "\\nestrow"; }
static { this.NestedTableProperties = "\\*\\nesttableprops"; }
static { this.NoNestedTable = "\\nonesttables"; }
static { this.ParagraphNestingLevel = "\\itap"; }
static { this.TableCellRight = "\\cellx"; }
static { this.TableCellPreferredWidth = "\\clwWidth"; }
static { this.TableCellPreferredWidthType = "\\clftsWidth"; }
static { this.TableCellBottomMargin = "\\clpadb"; }
static { this.TableCellLeftMargin = "\\clpadl"; }
static { this.TableCellRightMargin = "\\clpadr"; }
static { this.TableCellTopMargin = "\\clpadt"; }
static { this.TableCellBottomMarginType = "\\clpadfb"; }
static { this.TableCellLeftMarginType = "\\clpadfl"; }
static { this.TableCellRightMarginType = "\\clpadfr"; }
static { this.TableCellTopMarginType = "\\clpadft"; }
static { this.TableRowIndex = "\\irow"; }
static { this.TableRowBandIndex = "\\irowband"; }
static { this.TableRowLeftAlignment = "\\trql"; }
static { this.TableRowRightAlignment = "\\trqr"; }
static { this.TableRowCenterAlignment = "\\trqc"; }
static { this.TableIndent = "\\tblind"; }
static { this.TableIndentType = "\\tblindtype"; }
static { this.TableCellBottomBorder = "\\clbrdrb"; }
static { this.TableCellTopBorder = "\\clbrdrt"; }
static { this.TableCellLeftBorder = "\\clbrdrl"; }
static { this.TableCellRightBorder = "\\clbrdrr"; }
static { this.TableCellUpperLeftToLowerRightBorder = "\\cldglu"; }
static { this.TableCellUpperRightToLowerLeftBorder = "\\cldgll"; }
static { this.TableCellStartHorizontalMerging = "\\clmgf"; }
static { this.TableCellContinueHorizontalMerging = "\\clmrg"; }
static { this.TableCellStartVerticalMerging = "\\clvmgf"; }
static { this.TableCellContinueVerticalMerging = "\\clvmrg"; }
static { this.TableCellTextTopAlignment = "\\clvertalt"; }
static { this.TableCellTextCenterAlignment = "\\clvertalc"; }
static { this.TableCellTextBottomAlignment = "\\clvertalb"; }
static { this.TableCellLeftToRightTopToBottomTextDirection = "\\cltxlrtb"; }
static { this.TableCellTopToBottomRightToLeftTextDirection = "\\cltxtbrl"; }
static { this.TableCellBottomToTopLeftToRightTextDirection = "\\cltxbtlr"; }
static { this.TableCellLeftToRightTopToBottomVerticalTextDirection = "\\cltxlrtbv"; }
static { this.TableCellTopToBottomRightToLeftVerticalTextDirection = "\\cltxtbrlv"; }
static { this.TableCellFitText = "\\clFitText"; }
static { this.TableCellNoWrap = "\\clNoWrap"; }
static { this.TableCellHideMark = "\\clhidemark"; }
static { this.TableCellBackgroundColor = "\\clcbpat"; }
static { this.TableCellForegroundColor = "\\clcfpat"; }
static { this.TableCellShading = "\\clshdng"; }
static { this.TableTopBorder = "\\trbrdrt"; }
static { this.TableLeftBorder = "\\trbrdrl"; }
static { this.TableBottomBorder = "\\trbrdrb"; }
static { this.TableRightBorder = "\\trbrdrr"; }
static { this.TableHorizontalBorder = "\\trbrdrh"; }
static { this.TableVerticalBorder = "\\trbrdrv"; }
static { this.TableRowBackgroundColor = "\\trcbpat"; }
static { this.TableRowForegroundColor = "\\trcfpat"; }
static { this.TableRowShading = "\\trshdng"; }
static { this.TableRowHorizontalAnchorColumn = "\\tphcol"; }
static { this.TableRowHorizontalAnchorMargin = "\\tphmrg"; }
static { this.TableRowHorizontalAnchorPage = "\\tphpg"; }
static { this.TableRowVerticalAnchorMargin = "\\tpvmrg"; }
static { this.TableRowVerticalAnchorParagraph = "\\tpvpara"; }
static { this.TableRowVerticalAnchorPage = "\\tpvpg"; }
static { this.TableRowHorizontalAlignCenter = "\\tposxc"; }
static { this.TableRowHorizontalAlignInside = "\\tposxi"; }
static { this.TableRowHorizontalAlignLeft = "\\tposxl"; }
static { this.TableRowHorizontalAlignOutside = "\\tposxo"; }
static { this.TableRowHorizontalAlignRight = "\\tposxr"; }
static { this.TableRowHorizontalPosition = "\\tposx"; }
static { this.TableRowHorizontalPositionNeg = "\\tposnegx"; }
static { this.TableRowVerticalAlignBottom = "\\tposyb"; }
static { this.TableRowVerticalAlignCenter = "\\tposyc"; }
static { this.TableRowVerticalAlignInline = "\\tposyil"; }
static { this.TableRowVerticalAlignInside = "\\tposyin"; }
static { this.TableRowVerticalAlignOutside = "\\tposyout"; }
static { this.TableRowVerticalAlignTop = "\\tposyt"; }
static { this.TableRowVerticalPosition = "\\tposy"; }
static { this.TableRowVerticalPositionNeg = "\\tposnegy"; }
static { this.TableRowLeftFromText = "\\tdfrmtxtLeft"; }
static { this.TableRowBottomFromText = "\\tdfrmtxtBottom"; }
static { this.TableRowRightFromText = "\\tdfrmtxtRight"; }
static { this.TableRowTopFromText = "\\tdfrmtxtTop"; }
static { this.TableNoOverlap = "\\tabsnoovrlp"; }
static { this.TableHalfSpaceBetweenCells = "\\trgaph"; }
static { this.TableRowLeft = "\\trleft"; }
static { this.TableRowHeight = "\\trrh"; }
static { this.TableRowHeader = "\\trhdr"; }
static { this.TableRowCantSplit = "\\trkeep"; }
static { this.TablePreferredWidth = "\\trwWidth"; }
static { this.TablePreferredWidthType = "\\trftsWidth"; }
static { this.TableRowWidthBefore = "\\trwWidthB"; }
static { this.TableRowWidthBeforeType = "\\trftsWidthB"; }
static { this.TableRowWidthAfter = "\\trwWidthA"; }
static { this.TableRowWidthAfterType = "\\trftsWidthA"; }
static { this.TableLayout = "\\trautofit"; }
static { this.TableCellSpacingBottom = "\\trspdb"; }
static { this.TableCellSpacingLeft = "\\trspdl"; }
static { this.TableCellSpacingRight = "\\trspdr"; }
static { this.TableCellSpacingTop = "\\trspdt"; }
static { this.TableCellSpacingBottomType = "\\trspdfb"; }
static { this.TableCellSpacingLeftType = "\\trspdfl"; }
static { this.TableCellSpacingRightType = "\\trspdfr"; }
static { this.TableCellSpacingTopType = "\\trspdft"; }
static { this.TableCellMarginsBottom = "\\trpaddb"; }
static { this.TableCellMarginsLeft = "\\trpaddl"; }
static { this.TableCellMarginsRight = "\\trpaddr"; }
static { this.TableCellMarginsTop = "\\trpaddt"; }
static { this.TableCellMarginsBottomType = "\\trpaddfb"; }
static { this.TableCellMarginsLeftType = "\\trpaddfl"; }
static { this.TableCellMarginsRightType = "\\trpaddfr"; }
static { this.TableCellMarginsTopType = "\\trpaddft"; }
static { this.TableApplyFirstRow = "\\tbllkhdrrows"; }
static { this.TableApplyLastRow = "\\tbllklastrow"; }
static { this.TableApplyFirstColumn = "\\tbllkhdrcols"; }
static { this.TableApplyLastColumn = "\\tbllklastcol"; }
static { this.TableDoNotApplyRowBanding = "\\tbllknorowband"; }
static { this.TableDoNotApplyColumnBanding = "\\tbllknocolband"; }
static { this.TableLastRow = "\\lastrow"; }
static { this.TableStyleResetTableProperties = "\\tsrowd"; }
static { this.TableStyleCellVerticalAlignmentTop = "\\tsvertalt"; }
static { this.TableStyleCellVerticalAlignmentCenter = "\\tsvertalc"; }
static { this.TableStyleCellVerticalAlignmentBottom = "\\tsvertalb"; }
static { this.TableStyleRowBandSize = "\\tscbandsh"; }
static { this.TableStyleColumnBandSize = "\\tscbandsv"; }
static { this.TableStyleCellBackgroundColor = "\\tscellcbpat"; }
static { this.TableStyleCellForegroundColor = "\\tscellcfpat"; }
static { this.TableStyleCellShading = "\\tscellpct"; }
static { this.TableStyleTopCellBorder = "\\tsbrdrt"; }
static { this.TableStyleLeftCellBorder = "\\tsbrdrl"; }
static { this.TableStyleBottomCellBorder = "\\tsbrdrb"; }
static { this.TableStyleRightCellBorder = "\\tsbrdrr"; }
static { this.TableStyleHorizontalCellBorder = "\\tsbrdrh"; }
static { this.TableStyleVerticalCellBorder = "\\tsbrdrv"; }
static { this.TableStyleCellNoWrap = "\\tsnowrap"; }
static { this.TableStyleTableBottomCellMargin = "\\tscellpaddb"; }
static { this.TableStyleTableLeftCellMargin = "\\tscellpaddl"; }
static { this.TableStyleTableRightCellMargin = "\\tscellpaddr"; }
static { this.TableStyleTableTopCellMargin = "\\tscellpaddt"; }
static { this.TableStyleTableBottomCellMarginUnitType = "\\tscellpaddfb"; }
static { this.TableStyleTableLeftCellMarginUnitType = "\\tscellpaddfl"; }
static { this.TableStyleTableRightCellMarginUnitType = "\\tscellpaddfr"; }
static { this.TableStyleTableTopCellMarginUnitType = "\\tscellpaddft"; }
static { this.TableStyleUpperLeftToLowerRightBorder = "\\tsbrdrdgl"; }
static { this.TableStyleUpperRightToLowerLeftBorder = "\\tsbrdrdgr"; }
static { this.TableConditionalStyleFirstRow = "\\tscfirstrow"; }
static { this.TableConditionalStyleLastRow = "\\tsclastrow"; }
static { this.TableConditionalStyleFirstColumn = "\\tscfirstcol"; }
static { this.TableConditionalStyleLastColumn = "\\tsclastcol"; }
static { this.TableConditionalStyleOddRowBanding = "\\tscbandhorzodd"; }
static { this.TableConditionalStyleEvenRowBanding = "\\tscbandhorzeven"; }
static { this.TableConditionalStyleOddColumnBanding = "\\tscbandvertodd"; }
static { this.TableConditionalStyleEvenColumnBanding = "\\tscbandverteven"; }
static { this.TableConditionalStyleTopLeftCell = "\\tscnwcell"; }
static { this.TableConditionalStyleTopRightCell = "\\tscnecell"; }
static { this.TableConditionalStyleBottomLeftCell = "\\tscswcell"; }
static { this.TableConditionalStyleBottomRightCell = "\\tscsecell"; }
static { this.NoTableBorder = "\\brdrtbl"; }
static { this.NoBorder = "\\brdrnil"; }
static { this.BorderWidth = "\\brdrw"; }
static { this.BorderColor = "\\brdrcf"; }
static { this.BorderFrame = "\\brdrframe"; }
static { this.BorderSpace = "\\brsp"; }
static { this.BorderArtIndex = "\\brdrart"; }
static { this.BorderSingleWidth = "\\brdrs"; }
static { this.BorderDoubleWidth = "\\brdrth"; }
static { this.BorderShadow = "\\brdrsh"; }
static { this.BorderDouble = "\\brdrdb"; }
static { this.BorderDotted = "\\brdrdot"; }
static { this.BorderDashed = "\\brdrdash"; }
static { this.BorderSingle = "\\brdrhair"; }
static { this.BorderDashedSmall = "\\brdrdashsm"; }
static { this.BorderDotDashed = "\\brdrdashd"; }
static { this.BorderDotDotDashed = "\\brdrdashdd"; }
static { this.BorderInset = "\\brdrinset"; }
static { this.BorderNone = "\\brdrnone"; }
static { this.BorderOutset = "\\brdroutset"; }
static { this.BorderTriple = "\\brdrtriple"; }
static { this.BorderThickThinSmall = "\\brdrthtnsg"; }
static { this.BorderThinThickSmall = "\\brdrtnthsg"; }
static { this.BorderThinThickThinSmall = "\\brdrtnthtnsg"; }
static { this.BorderThickThinMedium = "\\brdrthtnmg"; }
static { this.BorderThinThickMedium = "\\brdrtnthmg"; }
static { this.BorderThinThickThinMedium = "\\brdrtnthtnmg"; }
static { this.BorderThickThinLarge = "\\brdrthtnlg"; }
static { this.BorderThinThickLarge = "\\brdrtnthlg"; }
static { this.BorderThinThickThinLarge = "\\brdrtnthtnlg"; }
static { this.BorderWavy = "\\brdrwavy"; }
static { this.BorderDoubleWavy = "\\brdrwavydb"; }
static { this.BorderDashDotStroked = "\\brdrdashdotstr"; }
static { this.BorderThreeDEmboss = "\\brdremboss"; }
static { this.BorderThreeDEngrave = "\\brdrengrave"; }
static { this.NumberingListTable = "\\*\\listtable"; }
static { this.ListOverrideTable = "\\*\\listoverridetable"; }
static { this.NumberingList = "\\list"; }
static { this.NumberingListId = "\\listid"; }
static { this.NumberingListTemplateId = "\\listtemplateid"; }
static { this.NumberingListStyleId = "\\liststyleid"; }
static { this.NumberingListStyleName = "\\*\\liststylename "; }
static { this.NumberingListName = "\\listname ;"; }
static { this.NumberingListHybrid = "\\listhybrid"; }
static { this.ListLevel = "\\listlevel"; }
static { this.ListLevelStart = "\\levelstartat"; }
static { this.ListLevelTentative = "\\lvltentative"; }
static { this.ListLevelNumberingFormat = "\\levelnfc"; }
static { this.ListLevelAlignment = "\\leveljc"; }
static { this.ListLevelNumberingFormatN = "\\levelnfcn"; }
static { this.ListLevelAlignmentN = "\\leveljcn"; }
static { this.LisLeveltOld = "\\levelold"; }
static { this.ListLevelPrev = "\\levelprev"; }
static { this.ListLevelPrevSpase = "\\levelprevspace"; }
static { this.ListLevelSpace = "\\levelspace"; }
static { this.ListLevelIntdent = "\\levelindent"; }
static { this.ListLevelNumbers = "\\levelnumbers"; }
static { this.ListLevelText = "\\leveltext"; }
static { this.LevelTemplateId = "\\leveltemplateid"; }
static { this.ListLevelFollow = "\\levelfollow"; }
static { this.ListLevelLegal = "\\levellegal"; }
static { this.ListLevelNoRestart = "\\levelnorestart"; }
static { this.ListLevelPicture = "\\levelpicture"; }
static { this.ListLevelPictureNoSize = "\\levelpicturenosize"; }
static { this.ListLevelLegacy = "\\levelold"; }
static { this.ListLevelLegacySpace = "\\levelspace"; }
static { this.ListLevelLegacyIndent = "\\levelindent"; }
static { this.ListOverride = "\\listoverride"; }
static { this.ListOverrideListId = "\\listid"; }
static { this.ListOverrideCount = "\\listoverridecount"; }
static { this.ListOverrideLevel = "\\lfolevel"; }
static { this.ListOverrideFormat = "\\listoverrideformat"; }
static { this.ListOverrideStart = "\\listoverridestartat"; }
static { this.ListOverrideStartValue = "\\levelstartat"; }
static { this.ListOverrideListLevel = "\\listlevel"; }
static { this.DefaultCharacterProperties = "\\*\\defchp"; }
static { this.DefaultParagraphProperties = "\\*\\defpap"; }
static { this.StyleSheet = "\\stylesheet"; }
static { this.ParagraphStyle = "\\s"; }
static { this.CharacterStyle = "\\*\\cs"; }
static { this.CharacterStyleIndex = "\\cs"; }
static { this.TableStyle = "\\*\\ts"; }
static { this.TableStyleIndex = "\\ts"; }
static { this.TableStyleCellIndex = "\\yts"; }
static { this.ParentStyle = "\\sbasedon"; }
static { this.LinkedStyle = "\\slink"; }
static { this.NextStyle = "\\snext"; }
static { this.QuickFormatStyle = "\\sqformat"; }
static { this.RTLRun = "\\rtlch"; }
static { this.LTRRun = "\\ltrch"; }
static { this.RLTParagraph = "\\rtlpar"; }
static { this.LTRParagraph = "\\ltrpar"; }
static { this.RTLRow = "\\rtlrow"; }
static { this.LTRRow = "\\ltrrow"; }
static { this.RTLSection = "\\rtlsect"; }
static { this.LTRSection = "\\ltrsect"; }
}
function createShadingPatternTable() {
return new MapCreator()
.add(ShadingPattern.ThinHorzStripe, "\\bghoriz")
.add(ShadingPattern.ThinVertStripe, "\\bgvert")
.add(ShadingPattern.ThinReverseDiagStripe, "\\bgfdiag")
.add(ShadingPattern.ThinDiagStripe, "\\bgbdiag")
.add(ShadingPattern.ThinHorzCross, "\\bgcross")
.add(ShadingPattern.ThinDiagCross, "\\bgdcross")
.add(ShadingPattern.HorzStripe, "\\bgdkhoriz")
.add(ShadingPattern.VertStripe, "\\bgdkvert")
.add(ShadingPattern.ReverseDiagStripe, "\\bgdkfdiag")
.add(ShadingPattern.DiagStripe, "\\bgdkbdiag")
.add(ShadingPattern.HorzCross, "\\bgdkcross")
.add(ShadingPattern.DiagCross, "\\bgdkdcross")
.get();
}
function createRunShadingPatternTable() {
return new MapCreator()
.add(ShadingPattern.ThinHorzStripe, "\\chbghoriz")
.add(ShadingPattern.ThinVertStripe, "\\chbgvert")
.add(ShadingPattern.ThinReverseDiagStripe, "\\chbgfdiag")
.add(ShadingPattern.ThinDiagStripe, "\\chbgbdiag")
.add(ShadingPattern.ThinHorzCross, "\\chbgcross")
.add(ShadingPattern.ThinDiagCross, "\\chbgdcross")
.add(ShadingPattern.HorzStripe, "\\chbgdkhoriz")
.add(ShadingPattern.VertStripe, "\\chbgdkvert")
.add(ShadingPattern.ReverseDiagStripe, "\\chbgdkfdiag")
.add(ShadingPattern.DiagStripe, "\\chbgdkbdiag")
.add(ShadingPattern.HorzCross, "\\chbgdkcross")
.add(ShadingPattern.DiagCross, "\\chbgdkdcross")
.get();
}
function createTableCellShadingPatternTable() {
return new MapCreator()
.add(ShadingPattern.ThinHorzStripe, "\\clbghoriz")
.add(ShadingPattern.ThinVertStripe, "\\clbgvert")
.add(ShadingPattern.ThinReverseDiagStripe, "\\clbgfdiag")
.add(ShadingPattern.ThinDiagStripe, "\\clbgbdiag")
.add(ShadingPattern.ThinHorzCross, "\\clbgcross")
.add(ShadingPattern.ThinDiagCross, "\\clbgdcross")
.add(ShadingPattern.HorzStripe, "\\clbgdkhor")
.add(ShadingPattern.VertStripe, "\\clbgdkvert")
.add(ShadingPattern.ReverseDiagStripe, "\\clbgdkfdiag")
.add(ShadingPattern.DiagStripe, "\\clbgdkbdiag")
.add(ShadingPattern.HorzCross, "\\clbgdkcross")
.add(ShadingPattern.DiagCross, "\\clbgdkdcross")
.get();
}
function createTableStyleShadingPatternTable() {
return new MapCreator()
.add(ShadingPattern.ThinHorzStripe, "\\tsbghoriz")
.add(ShadingPattern.ThinVertStripe, "\\tsbgvert")
.add(ShadingPattern.ThinReverseDiagStripe, "\\tsbgfdiag")
.add(ShadingPattern.ThinDiagStripe, "\\tsbgbdiag")
.add(ShadingPattern.ThinHorzCross, "\\tsbgcross")
.add(ShadingPattern.ThinDiagCross, "\\tsbgdcross")
.add(ShadingPattern.HorzStripe, "\\tsbgdkhor")
.add(ShadingPattern.VertStripe, "\\tsbgdkvert")
.add(ShadingPattern.ReverseDiagStripe, "\\tsbgdkfdiag")
.add(ShadingPattern.DiagStripe, "\\tsbgdkbdiag")
.add(ShadingPattern.HorzCross, "\\tsbgdkcross")
.add(ShadingPattern.DiagCross, "\\tsbgdkdcross")
.get();
}
function createThemeColorValuesTable() {
return new MapCreator()
.add(ThemeColorValues.Dark1, "\\cmaindarkone")
.add(ThemeColorValues.Light1, "\\cmainlightone")
.add(ThemeColorValues.Dark2, "\\cmaindarktwo")
.add(ThemeColorValues.Light2, "\\cmainlighttwo")
.add(ThemeColorValues.Accent1, "\\caccentone")
.add(ThemeColorValues.Accent2, "\\caccenttwo")
.add(ThemeColorValues.Accent3, "\\caccentthree")
.add(ThemeColorValues.Accent4, "\\caccentfour")
.add(ThemeColorValues.Accent5, "\\caccentfive")
.add(ThemeColorValues.Accent6, "\\caccentsix")
.add(ThemeColorValues.Hyperlink, "\\chyperlink")
.add(ThemeColorValues.FollowedHyperlink, "\\cfollowedhyperlink")
.add(ThemeColorValues.Background1, "\\cbackgroundone")
.add(ThemeColorValues.Text1, "\\ctextone")
.add(ThemeColorValues.Background2, "\\cbackgroundtwo")
.add(ThemeColorValues.Text2, "\\ctexttwo")
.get();
}