ByteScout PDF SDK - C# - Text - Tables Program.cs using System; using System.Diagnostics; using Bytescout.PDF; namespace Tables { /// /// This example demonstrates how to create tables. /// class Program { static void Main() { // Create new document Document pdfDocument = new Document(); pdfDocument.RegistrationName = "demo"; pdfDocument.RegistrationKey = "demo"; // Add page Page page = new Page(PaperFormat.A4); pdfDocument.Pages.Add(page); DeviceColor lightGrayColor = new ColorGray(200); DeviceColor whiteColor = new ColorGray(255); DeviceColor lightBlueColor = new ColorRGB(200, [...]