HiraokaHyperTools.iTextSharp-LGPL
0.2.5
|
Public Member Functions | |
PdfDashPattern () | |
PdfDashPattern (float dash) | |
PdfDashPattern (float dash, float gap) | |
PdfDashPattern (float dash, float gap, float phase) | |
void | Add (float n) |
override void | ToPdf (PdfWriter writer, Stream os) |
![]() | |
PdfArray () | |
PdfArray (PdfObject obj) | |
PdfArray (float[] values) | |
PdfArray (int[] values) | |
PdfArray (ArrayList l) | |
PdfArray (PdfArray array) | |
PdfObject | Remove (int idx) |
bool | IsEmpty () |
virtual bool | Add (PdfObject obj) |
virtual bool | Add (float[] values) |
virtual bool | Add (int[] values) |
virtual void | Add (int index, PdfObject element) |
virtual void | AddFirst (PdfObject obj) |
bool | Contains (PdfObject obj) |
ListIterator | GetListIterator () |
override string | ToString () |
PdfObject | GetDirectObject (int idx) |
PdfDictionary | GetAsDict (int idx) |
PdfArray | GetAsArray (int idx) |
PdfStream | GetAsStream (int idx) |
PdfString | GetAsString (int idx) |
PdfNumber | GetAsNumber (int idx) |
PdfName | GetAsName (int idx) |
PdfBoolean | GetAsBoolean (int idx) |
PdfIndirectReference | GetAsIndirectObject (int idx) |
IEnumerator | GetEnumerator () |
![]() | |
virtual byte[] | GetBytes () |
bool | CanBeInObjStm () |
override string | ToString () |
bool | IsNull () |
bool | IsBoolean () |
bool | IsNumber () |
bool | IsString () |
bool | IsName () |
bool | IsArray () |
bool | IsDictionary () |
bool | IsStream () |
bool | IsIndirect () |
Additional Inherited Members | |
![]() | |
const int | BOOLEAN = 1 |
const int | NUMBER = 2 |
const int | STRING = 3 |
const int | NAME = 4 |
const int | ARRAY = 5 |
const int | DICTIONARY = 6 |
const int | STREAM = 7 |
const int | NULL = 8 |
const int | INDIRECT = 10 |
const string | NOTHING = "" |
const string | TEXT_PDFDOCENCODING = "PDF" |
const string | TEXT_UNICODE = "UnicodeBig" |
![]() | |
PdfObject (int type) | |
PdfObject (int type, string content) | |
PdfObject (int type, byte[] bytes) | |
![]() | |
ArrayList | arrayList |
![]() | |
byte[] | bytes |
int | type |
PRIndirectReference | indRef |
![]() | |
PdfObject | this[int idx] [get, set] |
ArrayList | ArrayList [get] |
int | Size [get] |
![]() | |
int | Length [get] |
string | Content [set] |
int | Type [get] |
PRIndirectReference | IndRef [get, set] |
A PdfDashPattern
defines a dash pattern as described in the PDF Reference Manual version 1.3 p 325 (section 8.4.3).
iTextSharp.text.pdf.PdfDashPattern.PdfDashPattern | ( | ) |
Constructs a new PdfDashPattern
.
iTextSharp.text.pdf.PdfDashPattern.PdfDashPattern | ( | float | dash | ) |
Constructs a new PdfDashPattern
.
iTextSharp.text.pdf.PdfDashPattern.PdfDashPattern | ( | float | dash, |
float | gap | ||
) |
Constructs a new PdfDashPattern
.
iTextSharp.text.pdf.PdfDashPattern.PdfDashPattern | ( | float | dash, |
float | gap, | ||
float | phase | ||
) |
Constructs a new PdfDashPattern
.
void iTextSharp.text.pdf.PdfDashPattern.Add | ( | float | n | ) |
|
virtual |
Returns the PDF representation of this PdfArray
.
byte
s Reimplemented from iTextSharp.text.pdf.PdfArray.