This method gets called when characters are encountered.

Namespace: iTextSharp.text.xml
Assembly: ITextSharp (in ITextSharp.dll) Version: 4.1.6.0

Syntax

C#
public abstract void Characters(
	string content,
	int start,
	int length
)
Visual Basic
Public MustOverride Sub Characters ( _
	content As String, _
	start As Integer, _
	length As Integer _
)
Visual C++
public:
virtual void Characters(
	String^ content, 
	int start, 
	int length
) abstract

Parameters

content
Type: System..::..String
an array of characters
start
Type: System..::..Int32
the start position in the array
length
Type: System..::..Int32
the number of characters to read from the array

See Also