Click or drag to resize
Pdf Library for .NET

PdfDocumentBeginTag Method

Opens a container structure element (such as Table, TableRow, List or ListItem) in the tagged logical structure. Page elements added, and further containers opened, before the matching EndTag become children of this element, allowing nested structures such as Table>TR>TH/TD and L>LI>LBody.

Namespace: SelectPdf
Assembly: Select.Pdf (in Select.Pdf.dll) Version: 26.3
Syntax
public void BeginTag(
	PdfTagType tagType
)

Parameters

tagType  PdfTagType
The container structure type to open.
Remarks
Has no effect unless Tagged is enabled. Every BeginTag must be balanced by an EndTag.
See Also