/// <summary>
 /// This method will remove smart tags from the word doc..
 /// </summary>
 private void HandleSmartTags()
 {
     // GSDEF 12884: remove Office 10/11 smart tags to clean
     // segments (international versions of Office 2003 and XP
     // do not support the same smart tags anyway).
     m_wordDoc.EmbedSmartTags = false;
     m_wordDoc.RemoveSmartTags();
 }
        /// <summary>
        /// This method will remove smart tags from the word doc..
        /// </summary>
        private void HandleSmartTags()
        {
            // GSDEF 12884: remove Office 12 smart tags to clean
            // segments (international versions of Office 2007
            // do not support the same smart tags anyway).

            // For "Word Document Export Problem" issue
            //m_wordDoc.EmbedSmartTags = false;
            m_wordDoc.RemoveSmartTags();
        }