I'm developing a tool that will generate a file in .DOC format, the form fields will be filled anyway but I would like to put a formatting that removes any symbol from the text.
Ex: "•", "¹²³ £ ¢ ¬"
var atividades = wordDoc.Content.Paragraphs.Add();
atividade.Range.Text = "ATIVIDADES: \t" + txtAtividades.Text.Trim();
atividade.Range.Font.Name = "Arial";
atividade.Range.Bold = 0;
atividade.Range.Font.Size = 11; // Centralizando o texto
atividade.Range.ParagraphFormat.Alignment = Microsoft.Office.Interop.Word.WdParagraphAlignment.wdAlignParagraphLeft;
atividade.Range.InsertParagraphAfter();