Container Class Documentation
classContainer : ElementNamespace:com::datalogics::PDFL
- Inherits from:
Element
Detailed Description
A container class represents a group of elements on a page in a PDF file. In the PDF file, every container has a set of Marked Content tags, starting with Begin Marked Content (BMC or BDC) and ending with End Marked Content (EMC), so each container has a BMC/EMC or BDC/EMC pair of tags. These tags can be used to define the beginning and end of metadata around objects, providing information about the text and shapes within a PDF file. Containers can be nested within other containers.
Referenced by
Constructor & Destructor Documentation
Container
Container()Create a new Container.
The new Container has no tag and is not associated with a dictionary.
Container
Container(StringmcTag)Parameters
mcTag: String
Create a new Container with a given Marked Content Tag.
The new Container has a Marked Content tag but is not associated with a dictionary.
Container
Container(StringmcTag, PDFDictpropertyList, booleanisInline)Parameters
mcTag: StringThe tag name for the Container.
propertyList: PDFDictThe dictionary representing the Property List to associate with the Container.
isInline: booleanIf true, it's part of content stream. If false, its emitted outside of the content stream and referenced by name.
Create a new Container with a given Marked Content Tag and Property list.
The new Container has a Marked Content tag and is associated with a dictionary.
Member Function Documentation
DisposeChildren
voidDisposeChildren()Returns:
void[static initializer]
static void[static initializer]()clone
Containerclone()Returns:
The copied container.Makes a copy of the container.
Make a copy of an container to obtain a new container that has a distinct set of attributes.
clone
Containerclone(java.util.EnumSet< ElementCloneFlags >cloneFlags)Parameters
cloneFlags: java.util.EnumSet< ElementCloneFlags >Flags that modify the cloning operation.
Returns:
The copied container.Makes a copy of the container.
Make a copy of an container to obtain a new container that has a distinct set of attributes.
colorConvert
Parameters
document: DocumentThe document the element belongs to.
prof: ColorProfileThe ICC ColorProfile to be applied.
intent: RenderIntentThe ICC Rendering Intent for the ColorProfile
embed: booleanIf true, embed the color space and make the objects calibrated. If it is false and the target profile is CMYK, RGB, or Gray, the colors space of the resulting objects, after conversion, will be DeviceCMYK, DeviceRGB, or DeviceGray, respectively.
Returns:
A new Container with the applied ICC ColorProfile.Applies the specified ICC ColorProfile to the objects in the Container
delete
synchronized voiddelete(Booleandisposing)Parameters
disposing: Boolean
Returns:
synchronized voiddelete
synchronized voiddelete()Returns:
synchronized voidfinalize
voidfinalize()Returns:
voidgetBoundingBox
RectgetBoundingBox()Returns:
The bounding box for this element. The coordinates of the bounding box are specified in user space coordinates, relative to the element's Content. Note that user space coordinates correspond to unrotated pages; any rotation specified in the page dictionary is not taken into account.The bounding box for this element.
The bounding box is a rectangle that is guaranteed to encompass the element, but it is not guaranteed to be the smallest box that could contain the element. For example, if the element is a Path that contains an arc, the bounding box encompasses the bezier control points, and not just the curve itself.
getClip
ClipgetClip()Returns:
- The current Clip for this Element.Gets the current Clip for an Element.
getContent
ContentgetContent()Returns:
ContentObtain the content of a container.
getMarkedContentTag
StringgetMarkedContentTag()Returns:
StringThe container's Marked Content Tag.
getMatrix
MatrixgetMatrix()Returns:
MatrixThe transformation matrix for the element.
getOptionalContentMembershipDict
OptionalContentMembershipDictgetOptionalContentMembershipDict()Returns:
the OptionalContentMembershipDictThe OptionalContentMembershipDict property for this Container.
Setting this property will attach the Container to an OptionalContentMembershipDict; it will then be associated with the OptionalContentGroups and be subject to the VisibilityPolicy and VisibilityExpression of that MembershipDict.
By setting this property to null, the Container is detached from any OptionalContentMembershipDict.
getPDFDict
PDFDictgetPDFDict()Returns:
PDFDictRetrieve the PDFObject representation of this object
isCurrentlyVisible
booleanisCurrentlyVisible(OptionalContentContextocc)Parameters
Returns:
true if the container is currently visible.Tests whether a container is visible in a given optional content context, considering the current ON-OFF states of the optional-content groups in the optional-content dictionary (OCMD) and the dictionary's visibility policy.
If the container occurs more than once within the content, this method only checks the visibility of the first occurrence of the container.
This method determines visibility without considering the visbility of the Content object that the container belongs to. To determine the visibility of a container while taking the Content's visibility into consideration, use the alternate version of this method.
isCurrentlyVisible
booleanisCurrentlyVisible(OptionalContentContextocc, Contentcontent)Parameters
content: Content
Returns:
true if the container is currently visible.Tests whether a container is visible in a given optional content context and content.
If the container occurs more than once within the content, this method only checks the visibility of the first occurrence of the container.
makeVisible
booleanmakeVisible(OptionalContentContextocc, Contentcontent)Parameters
occ: OptionalContentContextThe optional content context in which the container is made visible.
content: ContentThe content containing the container.
Returns:
true if the container is successfully made visible in the given context and content, false otherwiseMakes a container visible in a given optional content context and content by manipulating the ON-OFF states of the optional content groups.
rotate
voidrotate(doubletheta)Parameters
theta: double
Returns:
voidRotate an element by T degrees counterclockwise units using the matrix [ cos T sin T -sin T cos T 0 0 ].
scale
voidscale(doublesx, doublesy)Parameters
sx: doublesy: double
Returns:
voidScale an element by (sx,sy) units using the matrix [ sx 0 0 sy 0 0 ].
setClip
voidsetClip(Clipclip)Parameters
clip: ClipThe clip to set as the current clip for this element.
Returns:
voidSets the current Clip for an Element.
setContent
voidsetContent(Contentcontent)Parameters
content: ContentThe new Content of the container.
Returns:
voidSet the content of a container.
setMarkedContentTag
voidsetMarkedContentTag(StringmcTag)Parameters
mcTag: String
Returns:
voidThe container's Marked Content Tag.
setMatrix
voidsetMatrix(Matrixmatrix)Parameters
matrix: Matrixthe transformation matrix for the element.
Returns:
voidSet the transformation matrix for the element.
setOptionalContentMembershipDict
voidsetOptionalContentMembershipDict(OptionalContentMembershipDictocmd)Parameters
ocmd: OptionalContentMembershipDictthe OptionalContentMembershipDict
Returns:
voidThe OptionalContentMembershipDict property for this Container.
Setting this property will attach the Container to an OptionalContentMembershipDict; it will then be associated with the OptionalContentGroups and be subject to the VisibilityPolicy and VisibilityExpression of that MembershipDict.
By setting this property to null, the Container is detached from any OptionalContentMembershipDict.
translate
voidtranslate(doubletx, doublety)Parameters
tx: doublety: double
Returns:
voidTranslate an element by (tx,ty) units using the matrix [ 1 0 0 1 tx ty ].