1
I am developing a tool that will generate a file in format . DOC, the form fields will be filled in anyway but 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();
You already have some code ready so I can write a response based on it?
– Leonel Sanches da Silva