Foxit PDF SDK
|
Public Member Functions | |
ParagraphEditingMgr (ParagraphEditingMgr other) | |
Constructor, with another paragraph edit manager object. More... | |
ParagraphEditingMgr (ParagraphEditingProviderCallback callback, PDFDoc document) throws com.foxit.sdk.PDFException | |
Constructor. More... | |
synchronized void | delete () |
Clean up related resources immediately. More... | |
JoinSplit | getJoinSplit () throws com.foxit.sdk.PDFException |
Get the join split object. More... | |
ParagraphEditing | getParagraphEditing () throws com.foxit.sdk.PDFException |
Get the paragraph edit object. More... | |
boolean | isEmpty () |
Check whether current object is empty or not. More... | |
void | setSystemDPI (float horizontal_dpi, float vertical_dpi) throws com.foxit.sdk.PDFException |
Set the dpi for the paragraph editing provider used. More... | |
This class represents a paragraph editing manager used for editing PDF page.
User can call the function ParagraphEditingMgr.getParagraphEditing to get current ParagraphEditing object in the process of using edit page. User can call the function ParagraphEditingMgr.getJoinSplit to get current JoinSplit object in the process of using edit page.
com.foxit.sdk.addon.pageeditor.ParagraphEditingMgr.ParagraphEditingMgr | ( | ParagraphEditingProviderCallback | callback, |
PDFDoc | document | ||
) | throws com.foxit.sdk.PDFException |
Constructor.
[in] | callback | A valid paragraph editing provider callback object. |
[in] | document | A valid PDF document object. |
com.foxit.sdk.addon.pageeditor.ParagraphEditingMgr.ParagraphEditingMgr | ( | ParagraphEditingMgr | other | ) |
Constructor, with another paragraph edit manager object.
[in] | other | Another paragraph edit manager object. |
synchronized void com.foxit.sdk.addon.pageeditor.ParagraphEditingMgr.delete | ( | ) |
Clean up related resources immediately.
Reimplemented from com.foxit.sdk.common.Base.
JoinSplit com.foxit.sdk.addon.pageeditor.ParagraphEditingMgr.getJoinSplit | ( | ) | throws com.foxit.sdk.PDFException |
Get the join split object.
ParagraphEditing com.foxit.sdk.addon.pageeditor.ParagraphEditingMgr.getParagraphEditing | ( | ) | throws com.foxit.sdk.PDFException |
Get the paragraph edit object.
boolean com.foxit.sdk.addon.pageeditor.ParagraphEditingMgr.isEmpty | ( | ) |
Check whether current object is empty or not.
When the current object is empty, that means current object is useless.
void com.foxit.sdk.addon.pageeditor.ParagraphEditingMgr.setSystemDPI | ( | float | horizontal_dpi, |
float | vertical_dpi | ||
) | throws com.foxit.sdk.PDFException |
Set the dpi for the paragraph editing provider used.
[in] | horizontal_dpi | A horizontal dpi for paragraph editing provider. It should be greater than 0.Default Value:96. |
[in] | vertical_dpi | A vertical dpi for paragraph editing provider. It should be greater than 0. Default Value:96. |