Type   Default Value   Read Only   Description
Float 0 No The first line of paragraph indent in points.

 

   
Notes
 
     

This property determines the horizontal indent applied to the first line of every paragraph.

If the indent is positive the start of the first line is shifted to the right by the specified number of points. If the indent is negative it is shifted to the left by the specified number of points.

 

   
Example
 
     

In this example we add a block of text to a document. We specify a ParaSpacing value to space out the paragraphs and an Indent value to indent the first line of each paragraph.

Set theDoc = Server.CreateObject("ABCpdf3.Doc")
theText = "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 & theText
theText = theText & vbCrLf & theText & vbCrLf
theText = theText & theText & theText & theText
theDoc.Rect.Inset 20, 40
theDoc.TextStyle.Size = 16
theDoc.TextStyle.ParaSpacing = 16
theDoc.TextStyle.Indent = 48
theDoc.AddText theText
theDoc.Save "c:\mypdfs\styleindent.pdf"


styleindent.pdf

 

   

 

Browser Based Help. Published by chm2web software.