ElementWriterBegin Method (SDFDoc) |
Begin writing an Element sequence to a new stream. Use this function to write
Elements to a content stream other than the page. For example, you can create
Form XObjects (See Section '4.9 Form XObjects' in PDF Reference for more details)
pattern streams, Type3 font glyph streams, etc.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void Begin(
SDFDoc doc
)
Public Sub Begin (
doc As SDFDoc
)
public:
virtual void Begin(
[InAttribute] SDFDoc^ doc
) sealed
Parameters
- doc
- Type: pdftron.SDFSDFDoc
- A low-level SDF/Cos document that will contain the new stream. You can
access low-level document using PDFDoc::GetSDFDoc() or Obj::GetDoc() methods.
Remarks the newly created content stream object is returned when writing operations
are completed (i.e. after the call to ElementWriter::End()).
See Also