HelloWorld example

            // Create main PDF Doc Engine
            
PDFDocEngine engine = new PDFDocEngine("""");

            
// Add new document
            
Document document engine.AddDocument();

            
// Append new page to the document
            
Page page document.AddPage(PageSizeType.A3, PageOrientationType.LandScape);

            
// Create new drawing
            
Drawing drawing page.AddDrawing();

            
// Add standard font
            
uint font document.AddFontStandard(StandardFontType.Courier, FontEncodingType.WinAnsi);

            
// Set Active Font
            
drawing.SetActiveFont(font, 50falsefalse);

            
// Draw Text
            
drawing.PlaceText(1001000"Hello World!");

            
// Closing drawing on the page
            
drawing.Close();

            
// Save document
            
document.Save("HelloWorld.pdf");