Click or drag to resize

PdfDrawingSurfaceBeginMarkedContent Method

Marks a stream of PDF content with the given tag. All calls to BeginMarkedContent(String) must have a matching call to EndMarkedContent. The PDF spec does not allow nesting of marked content.

Namespace:  Atalasoft.PdfDoc.Generating.Rendering
Assembly:  Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public abstract void BeginMarkedContent(
	string markedContentTag
)

Parameters

markedContentTag
Type: SystemString
The marked content tag.
Remarks
Tags have meaning that is specific to entities within PDF. For example, text that is rendered within some classes of annotations are set off with a Txtag and a BMC operator within PDF. Most code will never need to use this method directly. For access at a higher level, use the PdfMarkedContent object which can be used in any PdfDrawingList and emits both the begin marked content operator as well as the matching end marked content operator in a PDF stream.
See Also