How to Write "alltype letters" in a Word document using Document Builder

Hi,

How to Write “alltype letters” in a Word document using Document Builder .

Those letters like “ABCDE” not like “ABCDE” .

thx.

Hi

Thanks for your inquiry. Do you mean character spacing? If so, you can use the following code:

DocumentBuilder builder = new DocumentBuilder();
builder.Font.Spacing = 12;
builder.Write("ABCDE");
builder.Document.Save(@"Test001\out.doc");

If not, please attach sample document here. I will check it and provide you more information.
Best regards,