.NET
autoapp.txt
Associated article: Automating Applications On-the-Fly
Tags: .NET Design
Automating Applications On-the-Fly
by Drew Wildner
Example 1:
IPDFParagraph paragraph = section.AddParagraph();
//ParagraphFormat
paragraph.ParagraphFormat.Borders.Color = Color.Navy;
paragraph.ParagraphFormat.Borders.BorderType =
Syncfusion.DLS.BorderStyle.Single;
//Set the alginment to the center
paragraph.ParagraphFormat.HorizontalAlignment =
HorizontalAlignment.Left;
Example 2:
IPDFTextRange textRange = ...


