internal HighlightTextRun(string text, HighlightTextRun textRun, SCRIPT_LOGATTR[] scriptLogAttr)
     : base(text, textRun, scriptLogAttr)
 {
     m_highlightStart      = textRun.m_highlightStart;
     m_highlightEnd        = textRun.m_highlightEnd;
     m_highlightColor      = textRun.m_highlightColor;
     m_charIndexInOriginal = textRun.CharacterIndexInOriginal;
 }
 internal HighlightTextRun(string text, HighlightTextRun textRun)
     : base(text, textRun)
 {
     m_highlightStart      = textRun.m_highlightStart;
     m_highlightEnd        = textRun.m_highlightEnd;
     m_highlightColor      = textRun.m_highlightColor;
     m_charIndexInOriginal = textRun.CharacterIndexInOriginal;
 }