Foxit PDF SDK
|
Public Types | |
enum | OrderType { OrderType.e_None = 0x0000, OrderType.e_Row = 0x0001, OrderType.e_Column = 0x0002, OrderType.e_Structure = 0x0003 } |
Enumeration for tab order type. More... | |
Public Member Functions | |
TabOrderMgr (PDFPage page) | |
Constructor, from a PDF page object. More... | |
TabOrderMgr (TabOrderMgr other) | |
Constructor, with another tab order manager object. More... | |
bool | AdjustStructureOrder (AnnotArray annot_array) |
Adjust the structure order with specified annotations, and tab order type will be set to foxit.pdf.TabOrderMgr.OrderType.e_Structure at the same time. More... | |
Annot | GetFirstAnnot () |
Get the first annotation in current tab order. More... | |
Annot | GetLastAnnot () |
Get the last annotation in current tab order. More... | |
Annot | GetNextAnnot (Annot annot) |
Get the next annotation of specified annotation in current tab order. More... | |
TabOrderMgr.OrderType | GetOrderType () |
Get the tab order type. More... | |
Annot | GetPrevAnnot (Annot annot) |
Get the previous annotation of specified annotation in current tab order. More... | |
bool | IsEmpty () |
Check whether current object is empty or not. More... | |
void | Reload () |
Reload the tab order of annotations. More... | |
void | SetOrderType (TabOrderMgr.OrderType order_type) |
Set the tab order type. More... | |
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 foxit.pdf.annots.Annot.Flags.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:
After TabOrderMgr.SetOrderType being used or calling function TabOrderMgr.AdjustStructureOrder , function TabOrderMgr.Reload should be called; otherwise the annotations' order may not be changed as expected.
Enumeration for tab order type.
Values of this enumeration should be used alone.
|
inline |
Constructor, from a PDF page object.
[in] | page | A valid PDF page. |
|
inline |
Constructor, with another tab order manager object.
[in] | other | Another tab order manager object. |
|
inline |
Adjust the structure order with specified annotations, and tab order type will be set to foxit.pdf.TabOrderMgr.OrderType.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. |
|
inline |
Get the first annotation in current tab order.
|
inline |
Get the last annotation in current tab order.
Get the next annotation of specified annotation in current tab order.
[in] | annot | The valid specified annotation. |
|
inline |
Get the tab order type.
Get the previous annotation of specified annotation in current tab order.
[in] | annot | The valid specified annotation. |
|
inline |
Check whether current object is empty or not.
When the current object is empty, that means current object is useless.
|
inline |
Reload the tab order of annotations.
This function should be called when:
|
inline |
Set the tab order type.
[in] | order_type | The new tab order type. It should be one of following values:
|