Foxit PDF SDK
|
Instance Methods | |
(void) | - allowTextOverflow: |
Decide whether to allow the text of freetext to overflow or not. More... | |
(FSDefaultAppearance *) | - getDefaultAppearance |
Get default appearance data. More... | |
(id) | - init |
Constructor. | |
(id) | - initWithAnnot: |
Constructor, with parent class object. More... | |
(void) | - rotate: |
Rotate current annotation from current state with specified rotation value (in clockwise). More... | |
(BOOL) | - setDefaultAppearance: |
Set default appearance data. More... | |
![]() | |
(FSNote *) | - addReply |
Add a new reply to the end of reply list. More... | |
(void) | - addRichText:style: |
Add a new rich text string to the end. More... | |
(FSNote *) | - addStateAnnot:model:state: |
Add a new state annotation. More... | |
(FSMarkupArray *) | - getGroupElements |
Get an element (as markup annotation) from the group that current markup annotation belongs to. More... | |
(FSMarkup *) | - getGroupHeader |
Get the header annotation (as primary annotation) of the group that current markup annotation belongs to. More... | |
(FSNote *) | - getReply: |
Get a reply by index. More... | |
(int) | - getReplyCount |
Count all replies. More... | |
(NSString *) | - getRichTextContent: |
Get text string of a rich text string specified by index. More... | |
(int) | - getRichTextCount |
Get the count of rich text strings. More... | |
(FSRichTextStyle *) | - getRichTextStyle: |
Get style data of a rich text string specified by index. More... | |
(FSNoteArray *) | - getStateAnnots: |
Get all state annotations in a specified state model. More... | |
(void) | - insertRichText:content:style: |
Insert a new rich text string to the place which is specified by index. More... | |
(BOOL) | - isGrouped |
Check whether current markup annotation is in a group or not. More... | |
(BOOL) | - removeAllReplies |
Remove all the replies. More... | |
(BOOL) | - removeAllStateAnnots |
Remove all the state annotations. More... | |
(BOOL) | - removePopup |
Remove related pop-up annotation. More... | |
(BOOL) | - removeReply: |
Remove a reply by index. More... | |
(void) | - removeRichText: |
Remove a rich text string specified by index. More... | |
(void) | - setRichTextContent:content: |
Set text string of a rich text string specified by index. More... | |
(void) | - setRichTextStyle:style: |
Set style data of a rich text string specified by index. More... | |
(BOOL) | - ungroup |
Ungroup current markup annotation from the group it belongs to. More... | |
![]() | |
(FSPDFStream *) | - getAppearanceStream:appearance_state: |
Get annotation's appearance stream with specified type and state. More... | |
(FSRectI *) | - getDeviceRect: |
Get annotation rectangle in device coordinate system. More... | |
(FSPDFDictionary *) | - getDict |
Get annotation's dictionary object. More... | |
(FSMatrix2D *) | - getDisplayMatrix: |
Get the display matrix, from PDF coordinate system to targeted device coordinate system. More... | |
(int) | - getIndex |
Get the index of current annotation in the page which current annotation belongs to. More... | |
(FSPDFDictionary *) | - getOptionalContent |
Get the PDF dictionary of annotation's optional content. More... | |
(FSPDFPage *) | - getPage |
Get the related PDF page. More... | |
(FSRectF *) | - getRect |
Get rectangle, in PDF coordinate system. More... | |
(FSAnnotType) | - getType |
Get actual annotation type of current annotation. More... | |
(BOOL) | - hasProperty: |
Whether current annotation has the specified annotation's property. More... | |
(id) | - initWithPage:annot_dict: |
Constructor, with PDF page and annotation's PDF dictionary. More... | |
(BOOL) | - isEmpty |
Check whether current object is empty or not. More... | |
(BOOL) | - isMarkup |
Check if current annotation is a markup annotation. More... | |
(BOOL) | - move: |
Move current annotation to a new position, specified by a new rectangle in PDF coordinate system. More... | |
(BOOL) | - removeProperty: |
Remove a specified annotation's property. More... | |
(BOOL) | - resetAppearanceStream |
Reset appearance stream. More... | |
Properties | |
FSAlignment | alignment |
Get or Set alignment value. More... | |
FSMarkupEndingStyle | calloutLineEndingStyle |
Get or Set line ending style of the start point in a callout line. More... | |
FSPointFArray * | calloutLinePoints |
Get or Set a point of callout line points. More... | |
unsigned int | fillColor |
Get or Set fill color. More... | |
FSRectF * | innerRect |
Get or Set the inner rectangle. More... | |
FSRotation | rotation |
Get or Set current rotation value (in clockwise). | |
FSMatrix2D * | textMatrix |
Get or Set matrix in default appearance data for text in current free text annotation. More... | |
![]() | |
FSDateTime * | creationDateTime |
Get or Set creation date time. | |
NSString * | intent |
Get or Set intent name. More... | |
float | opacity |
Get or Set opacity value. More... | |
FSPopup * | popup |
Get or Set related pop-up annotation. More... | |
NSString * | subject |
Get or Set subject string. | |
NSString * | title |
Get or Set title string. More... | |
![]() | |
unsigned int | borderColor |
Get or Set border color. More... | |
FSBorderInfo * | borderInfo |
Get or Set border information. More... | |
NSString * | content |
Get or Set content. | |
unsigned int | flags |
Get or Set annotation flags. | |
FSDateTime * | modifiedDateTime |
Get or Set last modified date time. | |
NSString * | uniqueID |
Get or Set unique ID. | |
A free text annotation displays text directly on the page. So free text annotation does not need a related pop-up annotation to show the text.
Free text annotation is a kind of markup annotation, so class FSFreeText is derived from class FSMarkup , and also offers functions to get/set free text annotation's properties and reset appearance stream of a free text annotation.
- (void) allowTextOverflow: | (BOOL) | is_text_overflow |
Decide whether to allow the text of freetext to overflow or not.
For callout object and textbox object, if this function is not called,text of callout or textbox is allowed to overflow by default. For typewriter object, if this function is not called, text of typerwriter is not allowed to overflow by default.
[in] | is_text_overflow | A boolean value to decide whether text content is allowed to overflow or not when the size of the freetext rectangle is smaller than the size of the text content:
|
- (FSDefaultAppearance *) getDefaultAppearance |
Get default appearance data.
This property has effect on free text annotation's appearance. Default appearance data can be used in formatting text.
- (id) initWithAnnot: | (FSAnnot*) | annot |
Constructor, with parent class object.
[in] | annot | Parent class object. |
Reimplemented from FSMarkup.
- (void) rotate: | (FSRotation) | rotation |
Rotate current annotation from current state with specified rotation value (in clockwise).
[in] | rotation | Rotation value which represents the degree used to rotate current annotation from current state in clockwise. Please refer to values starting from FSRotation0 and this should be one of these values except FSRotationUnknown. Specially, if the input value is FSRotation0 (which means not to rotate current annotation), current function will do nothing. |
- (BOOL) setDefaultAppearance: | (FSDefaultAppearance*) | default_ap |
Set default appearance data.
This property has effect on free text annotation's appearance. Default appearance data can be used in formatting text.
If user wants the new default appearance data has effect on annotation's appearance, please call function FSAnnot::resetAppearanceStream after setting new default appearance data.
[in] | default_ap | The new default appearance data to be set. flags of input data can be used to decide which information is/are to be updated with the new data; for those no updated data, they will keep to use old data. |
|
readwritenonatomicassign |
Get or Set alignment value.
This property has effect on free text annotation's appearance.
|
readwritenonatomicassign |
Get or Set line ending style of the start point in a callout line.
Only when the intent name of a free text annotation is "FreeTextCallout", this free text annotation can have line ending style property, and this property has effect on this kind of free text annotation's appearance.
|
readwritenonatomicweak |
Get or Set a point of callout line points.
Only when the intent name of a free text annotation is "FreeTextCallout", this free text annotation can have callout line points property, and this property has effect on this kind of free text annotation's appearance. For a callout line, it can contain 2 or 3 points:
|
readwritenonatomicassign |
Get or Set fill color.
This property has effect on free text annotation's appearance. Fill color is used to fill the background of text box, and also for some callout line ending styles:
"Square", "Circle", "Diamond", "ClosedArrow", "RClosedArrow".
|
readwritenonatomicweak |
Get or Set the inner rectangle.
This property has effect on free text annotation's appearance. For a free text annotation, inner rectangle is where the annotation's text should be displayed. The inner rectangle could be just the same as or less than the annotation's rectangle, and should never be larger than annotation's rectangle.
|
readwritenonatomicweak |
Get or Set matrix in default appearance data for text in current free text annotation.
This property has effect on free text annotation's appearance. This property can be used to change the skew of text's display.