In this example we add some text to a document varying the
outline style to show how different values affect the final
result.
using var doc = new Doc();
doc.TextStyle.Size = 144;
doc.AddText("Outline 0");
doc.Rect.Move(0, -300);
doc.TextStyle.Outline = 4;
doc.AddText("Outline 4");
doc.Rect.Move(0, -300);
doc.TextStyle.Outline = 10;
doc.AddText("Outline 10");
doc.Save("styleoutline.pdf");