Foxit PDF SDK
 All Classes Namespaces Functions Enumerations Enumerator Properties Pages
foxit.pdf.graphics.MarkedContent Class Reference

Inherits SystemIDisposable.

Public Member Functions

int AddItem (string tag_name, PDFDictionary property_dict)
 Add a new marked content item. More...
 
int GetItemCount ()
 Get the count of marked content items. More...
 
int GetItemMCID (int index)
 Get marked-content identifier (MCID) of a marked content item specified by index. More...
 
PDFDictionary GetItemPropertyDict (int index)
 Get the property dictionary of a marked content item specified by index. More...
 
string GetItemTagName (int index)
 Get the tag name of a marked content item specified by index. More...
 
bool HasTag (string tag_name)
 Check whether current marked content object has a specified marked content item or not. More...
 
bool RemoveItem (string tag_name)
 Remove a marked content item by tag name. More...
 

Detailed Description

Marked-content operators (PDF 1.2) identify a portion of a PDF content stream as a marked-content element of interest to a particular application or PDF plug-in extension. For more details, please refer to Section 10.5 "Marked Content" in <PDF Reference 1.7>.
To get a marked content object, please use function GraphicsObject.GetMarkedContent .

See Also
GraphicsObject

Member Function Documentation

int foxit.pdf.graphics.MarkedContent.AddItem ( string  tag_name,
PDFDictionary  property_dict 
)
inline

Add a new marked content item.

Parameters
[in]tag_nameNew tag name. It should not be an empty string. If parameter tag_name exists in current marked content object, it cannot be added to current marked content object again.
[in]property_dictA property dictionary. null means the new marked content item will not have a property dictionary.
If this dictionary is newly created and not set to other object yet, user should release this dictionary object after calling this function.
Returns
The index of the newly added marked content item. If there is any error, this function will return -1.
int foxit.pdf.graphics.MarkedContent.GetItemCount ( )
inline

Get the count of marked content items.

A marked content object may be nested one within another, and this function is used to get the count of marked content items in the current marked content sequence.

Returns
The count of marked content items.
int foxit.pdf.graphics.MarkedContent.GetItemMCID ( int  index)
inline

Get marked-content identifier (MCID) of a marked content item specified by index.

Parameters
[in]indexItem index. Valid range: from 0 to (count-1). count is returned by function MarkedContent.GetItemCount .
Returns
The MCID value. A negative number means that the specified marked content item does not have a MCID.
PDFDictionary foxit.pdf.graphics.MarkedContent.GetItemPropertyDict ( int  index)
inline

Get the property dictionary of a marked content item specified by index.

Parameters
[in]indexItem index. Valid range: from 0 to (count-1). count is returned by function MarkedContent.GetItemCount .
Returns
The property dictionary. null means no property dictionary.
string foxit.pdf.graphics.MarkedContent.GetItemTagName ( int  index)
inline

Get the tag name of a marked content item specified by index.

A marked content object may be nested one within another, and this function is used to get the count of marked content items in the current marked content sequence.

Parameters
[in]indexItem index. Valid range: from 0 to (count-1). count is returned by function MarkedContent.GetItemCount .
Returns
The tag name.
bool foxit.pdf.graphics.MarkedContent.HasTag ( string  tag_name)
inline

Check whether current marked content object has a specified marked content item or not.

Parameters
[in]tag_nameThe tag name to be checked.
Returns
true means current marked content object has the specified marked content item. false means current marked content object does not have the specified marked content item.
bool foxit.pdf.graphics.MarkedContent.RemoveItem ( string  tag_name)
inline

Remove a marked content item by tag name.

Parameters
[in]tag_nameTag name. It should not be an empty string.
Returns
true means success, while false means failure.