Table of Contents

Interface ISplitCharacter

Namespace
iTextSharp.text
Assembly
iTextSharp.LGPLv2.Core.dll

Interface for customizing the split character.

public interface ISplitCharacter

Methods

IsSplitCharacter(int, int, int, char[], PdfChunk[])

Returns true if the character can split a line. The splitting implementation is free to look ahead or look behind characters to make a decision.

bool IsSplitCharacter(int start, int current, int end, char[] cc, PdfChunk[] ck)

Parameters

start int

the lower limit of cc inclusive

current int

the pointer to the character in cc

end int

the upper limit of cc exclusive

cc char[]

an array of characters at least end sized

ck PdfChunk[]

an array of PdfChunk . The main use is to be able to call

Returns

bool

true if the Character(s) can split a line