Creates new list item.

Namespace: Spire.Pdf.Lists
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 7.9.2.0 (7.9.2.1020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public PdfListItem(
	string text,
	PdfFontBase font,
	PdfStringFormat format,
	PdfPen pen,
	PdfBrush brush
)
Public Sub New ( 
	text As String,
	font As PdfFontBase,
	format As PdfStringFormat,
	pen As PdfPen,
	brush As PdfBrush
)
public:
PdfListItem(
	String^ text, 
	PdfFontBase^ font, 
	PdfStringFormat^ format, 
	PdfPen^ pen, 
	PdfBrush^ brush
)
new : 
        text : string * 
        font : PdfFontBase * 
        format : PdfStringFormat * 
        pen : PdfPen * 
        brush : PdfBrush -> PdfListItem

Parameters

text
String
The item text.
font
PdfFontBase
The item font.
format
PdfStringFormat
The string format of item.
pen
PdfPen
The item pen.
brush
PdfBrush
The item brush.

See Also