HiraokaHyperTools.iTextSharp-LGPL
0.2.5
|
Public Member Functions | |
PdfBoolean (bool value) | |
PdfBoolean (string value) | |
override string | ToString () |
![]() | |
virtual void | ToPdf (PdfWriter writer, Stream os) |
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 () |
Static Public Attributes | |
static readonly PdfBoolean | PDFTRUE = new PdfBoolean(true) |
static readonly PdfBoolean | PDFFALSE = new PdfBoolean(false) |
const string | TRUE = "true" |
const string | FALSE = "false" |
![]() | |
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" |
Properties | |
bool | BooleanValue [get] |
![]() | |
int | Length [get] |
string | Content [set] |
int | Type [get] |
PRIndirectReference | IndRef [get, set] |
Additional Inherited Members | |
![]() | |
PdfObject (int type) | |
PdfObject (int type, string content) | |
PdfObject (int type, byte[] bytes) | |
![]() | |
byte[] | bytes |
int | type |
PRIndirectReference | indRef |
PdfBoolean
is the bool object represented by the keywords true or false.
This object is described in the 'Portable Document Format Reference Manual version 1.3' section 4.2 (page 37).
iTextSharp.text.pdf.PdfBoolean.PdfBoolean | ( | bool | value | ) |
Constructs a PdfBoolean
-object.
value | the value of the new PdfObject |
iTextSharp.text.pdf.PdfBoolean.PdfBoolean | ( | string | value | ) |
Constructs a PdfBoolean
-object.
value | the value of the new PdfObject , represented as a string |
BadPdfFormatException | thrown if the value isn't 'true ' or 'false ' |
override string iTextSharp.text.pdf.PdfBoolean.ToString | ( | ) |
|
static |
A possible value of PdfBoolean
|
static |
|
static |
|
static |
A possible value of PdfBoolean
|
get |
Returns the primitive value of the PdfBoolean
-object.