Hello, I’m trying to use the DocumentBuilder.InsertHtml method but it doesn’t diplay the tab character as expected. I’ve tried multiple ways of defining the tab character but nothing works.
var builder = new DocumentBuilder();
builder.InsertHtml(" ");
builder.InsertHtml("	");
builder.InsertHtml(ControlChar.Tab);
builder.InsertHtml("\t");