HiraokaHyperTools.iTextSharp-LGPL
0.2.5
|
Static Public Member Functions | |
static ICollection | GetKeySet (Properties table) |
static Object[][] | AddToArray (Object[][] original, Object[] item) |
static bool | CheckTrueOrFalse (Properties attributes, String key) |
static Uri | ToURL (string filename) |
This method makes a valid URL from a given filename. More... | |
static String | UnEscapeURL (String src) |
static void | Skip (Stream istr, int size) |
This method is an alternative for the Stream.Skip()-method that doesn't seem to work properly for big values of size. More... | |
static float | MillimetersToPoints (float value) |
static float | MillimetersToInches (float value) |
static float | PointsToMillimeters (float value) |
static float | PointsToInches (float value) |
static float | InchesToMillimeters (float value) |
static float | InchesToPoints (float value) |
static bool | IsSurrogateHigh (char c) |
static bool | IsSurrogateLow (char c) |
static bool | IsSurrogatePair (string text, int idx) |
static bool | IsSurrogatePair (char[] text, int idx) |
static int | ConvertToUtf32 (char highSurrogate, char lowSurrogate) |
static int | ConvertToUtf32 (char[] text, int idx) |
static int | ConvertToUtf32 (string text, int idx) |
static string | ConvertFromUtf32 (int codePoint) |
A collection of convenience methods that were present in many different iText classes.
|
static |
Utility method to extend an array.
original | the original array or null |
item | the item to be added to the array |
|
static |
Checks for a true/false value of a key in a Properties object.
attributes | |
key |
|
static |
|
static |
|
static |
|
static |
|
static |
table |
|
static |
Measurement conversion from inches to millimeters.
value | a value in inches |
|
static |
Measurement conversion from inches to points.
value | a value in inches |
|
static |
|
static |
|
static |
|
static |
|
static |
Measurement conversion from millimeters to inches.
value | a value in millimeters |
|
static |
Measurement conversion from millimeters to points.
value | a value in millimeters |
|
static |
Measurement conversion from points to inches.
value | a value in points |
|
static |
Measurement conversion from points to millimeters.
value | a value in points |
|
static |
This method is an alternative for the Stream.Skip()-method that doesn't seem to work properly for big values of size.
istr | the stream |
size | the number of bytes to skip |
|
static |
This method makes a valid URL from a given filename.
filename | a given filename |
|
static |
Unescapes an URL. All the "%xx" are replaced by the 'xx' hex char value.
src | the url to unescape |