ElementReaderBegin Method (Obj, Obj) |
Begin processing given content stream. The content stream may be
a Form XObject, Type3 glyph stream, pattern stream or any other content stream.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void Begin(
Obj content_stream,
Obj resource_dict
)
Public Sub Begin (
content_stream As Obj,
resource_dict As Obj
)
public:
virtual void Begin(
[InAttribute] Obj^ content_stream,
[InAttribute] Obj^ resource_dict
) sealed
function Begin(content_stream, resource_dict);
Parameters
- content_stream
- Type: pdftron.SDFObj
- A stream object representing the content stream (usually
a Form XObject).
- resource_dict
- Type: pdftron.SDFObj
- An optional '/Resource' dictionary parameter.
If content stream refers to named resources that are not present in
the local Resource dictionary, the names are looked up in the supplied
resource dictionary.
Remarks When page processing is completed, make sure to call ElementReader.End().
See Also