Foxit PDF SDK
|
Public Member Functions | |
def | TabOrderMgr (page) |
Constructor, from a PDF page object. More... | |
def | AdjustStructureOrder (annot_array) |
Adjust the structure order with specified annotations, and tab order type will be set to FoxitPDFSDKPython3.TabOrderMgr.e_Structure at the same time. More... | |
def | GetFirstAnnot () |
Get the first annotation in current tab order. More... | |
def | GetLastAnnot () |
Get the last annotation in current tab order. More... | |
def | GetNextAnnot (annot) |
Get the next annotation of specified annotation in current tab order. More... | |
def | GetOrderType () |
Get the tab order type. More... | |
def | GetPrevAnnot (annot) |
Get the previous annotation of specified annotation in current tab order. More... | |
def | IsEmpty () |
Check whether current object is empty or not. More... | |
def | Reload () |
Reload the tab order of annotations. More... | |
def | SetOrderType (order_type) |
Set the tab order type. More... | |
Static Public Attributes | |
e_Column = _fsdk.TabOrderMgr_e_Column | |
C (column order): Annotations are visited in columns running vertically up and down the page. | |
e_None = _fsdk.TabOrderMgr_e_None | |
None (index order): Annotations are visited in annotation's index across the page. | |
e_Row = _fsdk.TabOrderMgr_e_Row | |
R (row order): Annotations are visited in rows running horizontally across the page. | |
e_Structure = _fsdk.TabOrderMgr_e_Structure | |
S (structure order): Annotations are visited in the order in which they appear in the structure tree. | |
Tab order is the order to navigate through annotations on a PDF page by using Tab key in keyboard. This class offers functions to manage the order of moving the keyboard focus among annotations on a PDF page. Tab order manager will ignore following types of annotations:
note annotations which are as reply annotations, note annotations which are as state annotations, pop-up annotations, annotations whose flags contain FoxitPDFSDKPython3.Annot.e_FlagHidden .
This class offers functions to get the order type and get annotations one by one in the order type. This class also offers functions to change the order type:
FoxitPDFSDKPython3.TabOrderMgr.SetOrderType can be used to change the tab order type. Specially, if the tab order type is changed to FoxitPDFSDKPython3.TabOrderMgr.e_Structure , function FoxitPDFSDKPython3.TabOrderMgr.AdjustStructureOrder could be called to set the order.
Function FoxitPDFSDKPython3.TabOrderMgr.AdjustStructureOrder can be called directly to change the order type to structure order and set the structure order at the same time.
After FoxitPDFSDKPython3.TabOrderMgr.SetOrderType being used or calling function FoxitPDFSDKPython3.TabOrderMgr.AdjustStructureOrder , function FoxitPDFSDKPython3.TabOrderMgr.Reload should be called; otherwise the annotations' order may not be changed as expected.
def FoxitPDFSDKPython3.TabOrderMgr.TabOrderMgr | ( | page | ) |
Constructor, from a PDF page object.
Constructor, with another tab order manager object.
[in] | page | A valid PDF page. |
[in] | other | Another tab order manager object. |
def FoxitPDFSDKPython3.TabOrderMgr.AdjustStructureOrder | ( | annot_array | ) |
Adjust the structure order with specified annotations, and tab order type will be set to FoxitPDFSDKPython3.TabOrderMgr.e_Structure at the same time.
This function is used to adjust the annotation order for structure tab order. First, re-order annotations in the input array according to the order in this array, and then re-order the reset annotations (which are not included in the input array) by the reading direction of PDF document.
After this function succeeds, indexes of all annotations in the related PDF page will be changed.
[in] | annot_array | An array of annotations which will be re-ordered first for structure tab order. All the annotations in this array should belong to the same page as the one related to current tab order manager. These annotations should all be valid and should be different from each other. |
def FoxitPDFSDKPython3.TabOrderMgr.GetFirstAnnot | ( | ) |
Get the first annotation in current tab order.
def FoxitPDFSDKPython3.TabOrderMgr.GetLastAnnot | ( | ) |
Get the last annotation in current tab order.
def FoxitPDFSDKPython3.TabOrderMgr.GetNextAnnot | ( | annot | ) |
Get the next annotation of specified annotation in current tab order.
[in] | annot | The valid specified annotation. |
def FoxitPDFSDKPython3.TabOrderMgr.GetOrderType | ( | ) |
Get the tab order type.
def FoxitPDFSDKPython3.TabOrderMgr.GetPrevAnnot | ( | annot | ) |
Get the previous annotation of specified annotation in current tab order.
[in] | annot | The valid specified annotation. |
def FoxitPDFSDKPython3.TabOrderMgr.IsEmpty | ( | ) |
Check whether current object is empty or not.
When the current object is empty, that means current object is useless.
def FoxitPDFSDKPython3.TabOrderMgr.Reload | ( | ) |
Reload the tab order of annotations.
This function should be called when:
any annotation in related PDF page is moved/deleted/added;
related page's rotation is changed;
reading direction of related PDF document is changed;
FoxitPDFSDKPython3.TabOrderMgr.SetOrderType is used or function FoxitPDFSDKPython3.TabOrderMgr.AdjustStructureOrder is called to change the tab order type or structure order.
def FoxitPDFSDKPython3.TabOrderMgr.SetOrderType | ( | order_type | ) |
Set the tab order type.
[in] | order_type | The new tab order type. It should be one of following values:
|