HiraokaHyperTools.iTextSharp-LGPL
0.2.5
|
Public Member Functions | |
bool | IsSplitCharacter (int start, int current, int end, char[] cc, PdfChunk[] ck) |
Static Public Attributes | |
static readonly ISplitCharacter | DEFAULT = new DefaultSplitCharacter() |
Protected Member Functions | |
char | GetCurrentCharacter (int current, char[] cc, PdfChunk[] ck) |
The default class that is used to determine whether or not a character is a split character. You can subclass this class to define your own split characters.
|
protected |
Returns the current character
current | current position in the array |
cc | the character array that has to be checked |
ck | chunk array |
bool iTextSharp.text.pdf.DefaultSplitCharacter.IsSplitCharacter | ( | int | start, |
int | current, | ||
int | end, | ||
char[] | cc, | ||
PdfChunk[] | ck | ||
) |
Checks if a character can be used to split a PdfString
.
for the moment every character less than or equal to SPACE, the character '-' and some specific unicode ranges are 'splitCharacters'.
start | start position in the array |
current | current position in the array |
end | end position in the array |
cc | the character array that has to be checked |
ck | chunk array |
true
if the character can be used to split a string, false
otherwise Implements iTextSharp.text.ISplitCharacter.
|
static |
An instance of the default SplitCharacter.