Adds the specified text.

Namespace: Spire.Pdf.Lists
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public PdfListItem Add(
	string text,
	PdfFontBase font,
	float itemIndent
)
Public Function Add ( 
	text As String,
	font As PdfFontBase,
	itemIndent As Single
) As PdfListItem
public:
PdfListItem^ Add(
	String^ text, 
	PdfFontBase^ font, 
	float itemIndent
)
member Add : 
        text : string * 
        font : PdfFontBase * 
        itemIndent : float32 -> PdfListItem 

Parameters

text
String
The text.
font
PdfFontBase
The font.
itemIndent
Single
The item indent.

Return Value

PdfListItem
List item.

See Also