|
HiraokaHyperTools.iTextSharp-LGPL
0.3.0
|
An Annotation is a little note that can be added to a page on a document. More...
Public Member Functions | |
| Annotation (Annotation an) | |
| Annotation (string title, string text) | |
| Constructs an Annotation with a certain title and some text. More... | |
| Annotation (string title, string text, float llx, float lly, float urx, float ury) | |
| Constructs an Annotation with a certain title and some text. More... | |
| Annotation (float llx, float lly, float urx, float ury, Uri url) | |
| Constructs an Annotation. More... | |
| Annotation (float llx, float lly, float urx, float ury, string url) | |
| Constructs an Annotation. More... | |
| Annotation (float llx, float lly, float urx, float ury, string file, string dest) | |
| Constructs an Annotation. More... | |
| Annotation (float llx, float lly, float urx, float ury, string moviePath, string mimeType, bool showOnDisplay) | |
| Creates a Screen anotation to embed media clips More... | |
| Annotation (float llx, float lly, float urx, float ury, string file, int page) | |
| Constructs an Annotation. More... | |
| Annotation (float llx, float lly, float urx, float ury, int named) | |
| Constructs an Annotation. More... | |
| Annotation (float llx, float lly, float urx, float ury, string application, string parameters, string operation, string defaultdir) | |
| Constructs an Annotation. More... | |
| bool | Process (IElementListener listener) |
| Processes the element by adding it (or the different parts) to an IElementListener. More... | |
| void | SetDimensions (float llx, float lly, float urx, float ury) |
| Sets the dimensions of this annotation. More... | |
| float | GetLlx () |
| Returns the lower left x-value. More... | |
| float | GetLly () |
| Returns the lower left y-value. More... | |
| float | GetUrx () |
| Returns the uppper right x-value. More... | |
| float | GetUry () |
| Returns the uppper right y-value. More... | |
| float | GetLlx (float def) |
| Returns the lower left x-value. More... | |
| float | GetLly (float def) |
| Returns the lower left y-value. More... | |
| float | GetUrx (float def) |
| Returns the upper right x-value. More... | |
| float | GetUry (float def) |
| Returns the upper right y-value. More... | |
| bool | IsContent () |
| bool | IsNestable () |
| override string | ToString () |
| Gets the content of the text element. More... | |
Static Public Attributes | |
| const int | TEXT = 0 |
| This is a possible annotation type. More... | |
| const int | URL_NET = 1 |
| This is a possible annotation type. More... | |
| const int | URL_AS_STRING = 2 |
| This is a possible annotation type. More... | |
| const int | FILE_DEST = 3 |
| This is a possible annotation type. More... | |
| const int | FILE_PAGE = 4 |
| This is a possible annotation type. More... | |
| const int | NAMED_DEST = 5 |
| This is a possible annotation type. More... | |
| const int | LAUNCH = 6 |
| This is a possible annotation type. More... | |
| const int | SCREEN = 7 |
| This is a possible annotation type. More... | |
| const string | TITLE = "title" |
| This is a possible attribute. More... | |
| const string | CONTENT = "content" |
| This is a possible attribute. More... | |
| const string | URL = "url" |
| This is a possible attribute. More... | |
| const string | FILE = "file" |
| This is a possible attribute. More... | |
| const string | DESTINATION = "destination" |
| This is a possible attribute. More... | |
| const string | PAGE = "page" |
| This is a possible attribute. More... | |
| const string | NAMED = "named" |
| This is a possible attribute. More... | |
| const string | APPLICATION = "application" |
| This is a possible attribute. More... | |
| const string | PARAMETERS = "parameters" |
| This is a possible attribute. More... | |
| const string | OPERATION = "operation" |
| This is a possible attribute. More... | |
| const string | DEFAULTDIR = "defaultdir" |
| This is a possible attribute. More... | |
| const string | LLX = "llx" |
| This is a possible attribute. More... | |
| const string | LLY = "lly" |
| This is a possible attribute. More... | |
| const string | URX = "urx" |
| This is a possible attribute. More... | |
| const string | URY = "ury" |
| This is a possible attribute. More... | |
| const string | MIMETYPE = "mime" |
| This is a possible attribute. More... | |
Protected Attributes | |
| int | annotationtype |
| This is the type of annotation. More... | |
| Hashtable | annotationAttributes = new Hashtable() |
| This is the title of the Annotation. More... | |
Properties | |
| int | Type [get] |
| Gets the type of the text element More... | |
| ArrayList | Chunks [get] |
| Gets all the chunks in this element. More... | |
| int | AnnotationType [get] |
| Returns the type of this Annotation. More... | |
| string | Title [get] |
| Returns the title of this Annotation. More... | |
| string | Content [get] |
| Gets the content of this Annotation. More... | |
| Hashtable | Attributes [get] |
| Gets the content of this Annotation. More... | |
Properties inherited from iTextSharp.text.IElement | |
| int | Type [get] |
| Gets the type of the text element. More... | |
| ArrayList | Chunks [get] |
| Gets all the chunks in this element. More... | |
An Annotation is a little note that can be added to a page on a document.
| iTextSharp.text.Annotation.Annotation | ( | Annotation | an | ) |
| iTextSharp.text.Annotation.Annotation | ( | string | title, |
| string | text | ||
| ) |
Constructs an Annotation with a certain title and some text.
| title | the title of the annotation |
| text | the content of the annotation |
| iTextSharp.text.Annotation.Annotation | ( | string | title, |
| string | text, | ||
| float | llx, | ||
| float | lly, | ||
| float | urx, | ||
| float | ury | ||
| ) |
Constructs an Annotation with a certain title and some text.
| title | the title of the annotation |
| text | the content of the annotation |
| llx | the lower left x-value |
| lly | the lower left y-value |
| urx | the upper right x-value |
| ury | the upper right y-value |
| iTextSharp.text.Annotation.Annotation | ( | float | llx, |
| float | lly, | ||
| float | urx, | ||
| float | ury, | ||
| Uri | url | ||
| ) |
Constructs an Annotation.
| llx | the lower left x-value |
| lly | the lower left y-value |
| urx | the upper right x-value |
| ury | the upper right y-value |
| url | the external reference |
| iTextSharp.text.Annotation.Annotation | ( | float | llx, |
| float | lly, | ||
| float | urx, | ||
| float | ury, | ||
| string | url | ||
| ) |
Constructs an Annotation.
| llx | the lower left x-value |
| lly | the lower left y-value |
| urx | the upper right x-value |
| ury | the upper right y-value |
| url | the external reference |
| iTextSharp.text.Annotation.Annotation | ( | float | llx, |
| float | lly, | ||
| float | urx, | ||
| float | ury, | ||
| string | file, | ||
| string | dest | ||
| ) |
Constructs an Annotation.
| llx | the lower left x-value |
| lly | the lower left y-value |
| urx | the upper right x-value |
| ury | the upper right y-value |
| file | an external PDF file |
| dest | the destination in this file |
| iTextSharp.text.Annotation.Annotation | ( | float | llx, |
| float | lly, | ||
| float | urx, | ||
| float | ury, | ||
| string | moviePath, | ||
| string | mimeType, | ||
| bool | showOnDisplay | ||
| ) |
Creates a Screen anotation to embed media clips
| llx | the lower left x-value |
| lly | the lower left y-value |
| urx | the upper right x-value |
| ury | the upper right y-value |
| moviePath | path to the media clip file |
| mimeType | mime type of the media |
| showOnDisplay | if true play on display of the page |
| iTextSharp.text.Annotation.Annotation | ( | float | llx, |
| float | lly, | ||
| float | urx, | ||
| float | ury, | ||
| string | file, | ||
| int | page | ||
| ) |
Constructs an Annotation.
| llx | the lower left x-value |
| lly | the lower left y-value |
| urx | the upper right x-value |
| ury | the upper right y-value |
| file | an external PDF file |
| page | a page number in this file |
| iTextSharp.text.Annotation.Annotation | ( | float | llx, |
| float | lly, | ||
| float | urx, | ||
| float | ury, | ||
| int | named | ||
| ) |
Constructs an Annotation.
| llx | the lower left x-value |
| lly | the lower left y-value |
| urx | the upper right x-value |
| ury | the upper right y-value |
| named | a named destination in this file |
<overloads> Has nine overloads. </overloads>
| iTextSharp.text.Annotation.Annotation | ( | float | llx, |
| float | lly, | ||
| float | urx, | ||
| float | ury, | ||
| string | application, | ||
| string | parameters, | ||
| string | operation, | ||
| string | defaultdir | ||
| ) |
Constructs an Annotation.
| llx | the lower left x-value |
| lly | the lower left y-value |
| urx | the upper right x-value |
| ury | the upper right y-value |
| application | an external application |
| parameters | parameters to pass to this application |
| operation | the operation to pass to this application |
| defaultdir | the default directory to run this application in |
| float iTextSharp.text.Annotation.GetLlx | ( | ) |
Returns the lower left x-value.
| float iTextSharp.text.Annotation.GetLlx | ( | float | def | ) |
Returns the lower left x-value.
| def | the default value |
| float iTextSharp.text.Annotation.GetLly | ( | ) |
Returns the lower left y-value.
| float iTextSharp.text.Annotation.GetLly | ( | float | def | ) |
Returns the lower left y-value.
| def | the default value |
| float iTextSharp.text.Annotation.GetUrx | ( | ) |
Returns the uppper right x-value.
| float iTextSharp.text.Annotation.GetUrx | ( | float | def | ) |
Returns the upper right x-value.
| def | the default value |
| float iTextSharp.text.Annotation.GetUry | ( | ) |
Returns the uppper right y-value.
| float iTextSharp.text.Annotation.GetUry | ( | float | def | ) |
Returns the upper right y-value.
| def | the default value |
| bool iTextSharp.text.Annotation.IsContent | ( | ) |
| bool iTextSharp.text.Annotation.IsNestable | ( | ) |
Implements iTextSharp.text.IElement.
| bool iTextSharp.text.Annotation.Process | ( | IElementListener | listener | ) |
Processes the element by adding it (or the different parts) to an IElementListener.
| listener | an IElementListener |
Implements iTextSharp.text.IElement.
| void iTextSharp.text.Annotation.SetDimensions | ( | float | llx, |
| float | lly, | ||
| float | urx, | ||
| float | ury | ||
| ) |
Sets the dimensions of this annotation.
| llx | the lower left x-value |
| lly | the lower left y-value |
| urx | the upper right x-value |
| ury | the upper right y-value |
| override string iTextSharp.text.Annotation.ToString | ( | ) |
Gets the content of the text element.
Implements iTextSharp.text.IElement.
|
protected |
This is the title of the Annotation.
|
protected |
This is the type of annotation.
|
static |
This is a possible attribute.
|
static |
This is a possible attribute.
|
static |
This is a possible attribute.
|
static |
This is a possible attribute.
|
static |
This is a possible attribute.
|
static |
This is a possible annotation type.
|
static |
This is a possible annotation type.
|
static |
This is a possible annotation type.
|
static |
This is a possible attribute.
|
static |
This is a possible attribute.
|
static |
This is a possible attribute.
|
static |
This is a possible attribute.
|
static |
This is a possible annotation type.
|
static |
This is a possible attribute.
|
static |
This is a possible attribute.
|
static |
This is a possible attribute.
|
static |
This is a possible annotation type.
|
static |
This is a possible annotation type.
|
static |
This is a possible attribute.
|
static |
This is a possible attribute.
|
static |
This is a possible annotation type.
|
static |
This is a possible annotation type.
|
static |
This is a possible attribute.
|
static |
This is a possible attribute.
|
get |
Returns the type of this Annotation.
a type
|
get |
Gets the content of this Annotation.
a reference
|
get |
Gets all the chunks in this element.
an ArrayList
|
get |
Gets the content of this Annotation.
a reference
|
get |
Returns the title of this Annotation.
a name
|
get |
Gets the type of the text element