|
def | AddBoolean (boolean_value) |
| Add a boolean value to the end of current PDF array object. More...
|
|
def | AddDateTime (date_time) |
| Add a date time to the end of current PDF array object. More...
|
|
def | AddElement (element) |
| Add a PDF object to the end of current PDF array object. More...
|
|
def | AddFloat (float_value) |
| Add a float value to the end of current PDF array object. More...
|
|
def | AddInteger (integer_value) |
| Add an integer value to the end of current PDF array object. More...
|
|
def | AddMatrix (matrix) |
| Add a matrix to the end of current PDF array object. More...
|
|
def | AddName (name) |
| Add a string as PDF name object to the end of current PDF array object. More...
|
|
def | AddRect (rect) |
| Add a rectangle to the end of current PDF array object. More...
|
|
def | AddString (new_string) |
| Add a string as PDF string object to the end of current PDF array object. More...
|
|
def | GetElement (index) |
| Get a specified element by index. More...
|
|
def | GetElementCount () |
| Get the count of elements. More...
|
|
def | InsertAt (index, element) |
| Insert a PDF object to a specified position in current PDF array object. More...
|
|
def | RemoveAt (index) |
| Remove an element in a specified position (by index) from current PDF array object. More...
|
|
def | SetAt (index, element) |
| Set a new PDF object at a specified position in current PDF array object. More...
|
|
def | CloneObject () |
| Clone current PDF object and get the cloned PDF object. More...
|
|
def | DeepCloneObject () |
| Clone current PDF object and get the cloned PDF object. More...
|
|
def | GetArray () |
| Get the PDF array object of current PDF object. More...
|
|
def | GetBoolean () |
| Get the boolean value of current PDF object. More...
|
|
def | GetDateTime () |
| Get the date time value of current PDF object. More...
|
|
def | GetDict () |
| Get the PDF dictionary object of current PDF object. More...
|
|
def | GetDirectObject () |
| Get the direct object of current PDF object. More...
|
|
def | GetFloat () |
| Get the float value of current PDF object. More...
|
|
def | GetInteger () |
| Get the integer value of current PDF object. More...
|
|
def | GetMatrix () |
| Get the matrix value of current PDF object. More...
|
|
def | GetName () |
| Get the name value of current PDF object. More...
|
|
def | GetObjNum () |
| Get the indirect object number of current PDF object. More...
|
|
def | GetRect () |
| Get the rectangle value of current PDF object. More...
|
|
def | GetStream () |
| Get the PDF stream object of current PDF object. More...
|
|
def | GetString () |
| Get the string value of current PDF object. More...
|
|
def | GetType () |
| Get the type of current PDF object. More...
|
|
def | GetWideString () |
| Get the wide string value of current PDF object. More...
|
|
def | IsIdentical (pdf_obj) |
| Check if input PDF object is identical with current PDF object. More...
|
|
def | Release () |
| Release a newly created PDF object or a clone PDF object, which is not related to PDF document or other PDF object and will not be used any more. More...
|
|
|
| Create = _fsdk.PDFArray_Create |
| Create a new array object. More...
|
|
| CreateFromMatrix = _fsdk.PDFArray_CreateFromMatrix |
| Create a new array object for a matrix. More...
|
|
| CreateFromRect = _fsdk.PDFArray_CreateFromRect |
| Create a new array object for a rectangle. More...
|
|
| CreateFromBoolean = _fsdk.PDFObject_CreateFromBoolean |
| Create a PDF object from a boolean value. More...
|
|
| CreateFromDateTime = _fsdk.PDFObject_CreateFromDateTime |
| Create a PDF object from date time. More...
|
|
| CreateFromFloat = _fsdk.PDFObject_CreateFromFloat |
| Create a PDF object from a float number. More...
|
|
| CreateFromInteger = _fsdk.PDFObject_CreateFromInteger |
| Create a PDF object from a integer number. More...
|
|
| CreateFromName = _fsdk.PDFObject_CreateFromName |
| Create a PDF object from a string which represents a name. More...
|
|
| CreateFromString = _fsdk.PDFObject_CreateFromString |
| Create a PDF object from string. More...
|
|
| CreateReference = _fsdk.PDFObject_CreateReference |
| Create a reference for an indirect object. More...
|
|
| e_Array = _fsdk.PDFObject_e_Array |
| PDF array object.
|
|
| e_Boolean = _fsdk.PDFObject_e_Boolean |
| PDF boolean object.
|
|
| e_Dictionary = _fsdk.PDFObject_e_Dictionary |
| PDF dictionary object.
|
|
| e_InvalidType = _fsdk.PDFObject_e_InvalidType |
| Invalid PDF object type.
|
|
| e_Name = _fsdk.PDFObject_e_Name |
| PDF name object.
|
|
| e_Null = _fsdk.PDFObject_e_Null |
| PDF null object.
|
|
| e_Number = _fsdk.PDFObject_e_Number |
| PDF number object.
|
|
| e_Reference = _fsdk.PDFObject_e_Reference |
| PDF reference object.
|
|
| e_Stream = _fsdk.PDFObject_e_Stream |
| PDF stream object.
|
|
| e_String = _fsdk.PDFObject_e_String |
| PDF string object.
|
|
A PDF array object is a one-dimensional collection of objects arranged sequentially. Unlike arrays in many other computer languages, elements in a PDF array can be any combination of numbers, strings, dictionaries, or any other objects, including other arrays. For more details, please refer to Section 3.2.5 "Array Objects" in <PDF Reference 1.7>.
Class FoxitPDFSDKPython2.PDFArray is derived from PDFObject and offers functions to create a new PDF array object and get/set elements of a PDF array object.
- See also
- PDFObject