ElementWriterWritePlacedElement Method |
A utility function that surrounds the given Element with a graphics state
Save/Restore Element (i.e. in PDF content stream represented as 'q element Q').
The function is equivalent to calling WriteElement three times:
WriteElement(eSave);
WriteElement(element);
WriteElement(eRestore);
where eSave is 'e_group_begin' and eRestore is 'e_group_end' Element
The function is useful when XObjects such as Images and Forms are drawn on
the page.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void WritePlacedElement(
Element element
)
Public Sub WritePlacedElement (
element As Element
)
public:
virtual void WritePlacedElement(
[InAttribute] Element^ element
) sealed
function WritePlacedElement(element);
Parameters
- element
- Type: pdftron.PDFElement
the element
See Also