In this example we add two blocks of text to a document. The
first block uses the default paragraph spacing. The second block
uses a positive value to space out the paragraphs.
using var doc = new Doc();
string text = "Gallia est omnis divisa in partes tres, quarum unam incolunt Belgae, aliam Aquitani, tertiam qui ipsorum lingua Celtae, nostra Galli appellantur. Hi omnes lingua, institutis, legibus inter se differunt.";
text = text + "\r\n" + text + "\r\n" + text + "\r\n" + text;
doc.Rect.Inset(20, 40);
doc.TextStyle.Size = 16;
doc.AddText(text);
doc.Rect.Move(0, -350);
doc.TextStyle.ParaSpacing = 20;
doc.AddText(text);
doc.Save(Server.MapPath("stylepspace.pdf"));
Using doc As New Doc()
Dim theText As String = "Gallia est omnis divisa in partes tres, quarum unam incolunt Belgae, aliam Aquitani, tertiam qui ipsorum lingua Celtae, nostra Galli appellantur. Hi omnes lingua, institutis, legibus inter se differunt."
theText = theText + vbCr & vbLf + theText + vbCr & vbLf + theText + vbCr & vbLf + theText
doc.Rect.Inset(20, 40)
doc.TextStyle.Size = 16
doc.AddText(theText)
doc.Rect.Move(0, -350)
doc.TextStyle.ParaSpacing = 20
doc.AddText(theText)
doc.Save(Server.MapPath("stylepspace.pdf"))
End Using