Foxit PDF SDK
|
Inherits FoxitPDFSDKPython2._object.
Public Member Functions | |
def | TableCellDataArray () |
Constructor. | |
def | TableCellDataArray (other) |
Constructor, with another array object. More... | |
def | Add (element) |
Add an element to the end of current array. More... | |
def | GetAt (index) |
Retrieve a copy of the element at position specified by index in current array. More... | |
def | GetSize () |
Get the size of elements in current array. More... | |
def | InsertAt (index, element) |
Insert an element before the position specified by index. More... | |
def | RemoveAll () |
Remove all the element from current array. More... | |
def | RemoveAt (index) |
Remove the element in position specified by index. More... | |
This class represents an array of TableCellDataColArray objects,inserted in the order of the displayed table from top to bottom.
def FoxitPDFSDKPython2.TableCellDataArray.TableCellDataArray | ( | other | ) |
Constructor, with another array object.
[in] | other | Another array object. |
def FoxitPDFSDKPython2.TableCellDataArray.Add | ( | element | ) |
Add an element to the end of current array.
[in] | element | New element to be added to current array. |
def FoxitPDFSDKPython2.TableCellDataArray.GetAt | ( | index | ) |
Retrieve a copy of the element at position specified by index in current array.
[in] | index | An index to specify which element is to be retrieved. |
def FoxitPDFSDKPython2.TableCellDataArray.GetSize | ( | ) |
Get the size of elements in current array.
def FoxitPDFSDKPython2.TableCellDataArray.InsertAt | ( | index, | |
element | |||
) |
Insert an element before the position specified by index.
[in] | index | An index to specify where to insert the new element. Valid range: from 0 to (size-1). size is the size of elements in current array. |
[in] | element | New element to be inserted to current array. |
def FoxitPDFSDKPython2.TableCellDataArray.RemoveAll | ( | ) |
Remove all the element from current array.
def FoxitPDFSDKPython2.TableCellDataArray.RemoveAt | ( | index | ) |
Remove the element in position specified by index.
[in] | index | An index to specify which element is to be removed. Valid range: from 0 to (size-1). size is the size of elements in current array. |