Click or drag to resize
Pdftools logo

Node Constructor


Namespace: PdfTools.Toolbox.Pdf.Structure
Assembly: PdfTools.Toolbox (in PdfTools.Toolbox.dll) Version: 1.3.0+2e7887cb8ae45c4d911ad975ad001ac2f1f257d8
Syntax
C#
public Node(
	string tag,
	Document document,
	Page page = null
)

Parameters

tag  String
Tags should conform to the Standard Structure Types described within the PDF standard or refer to entries in the RoleMap. Allowed values from the PDF standard are: Document, Part, Sect, Art, Div, H1, H2, H3, H4, H5, H6, P, L, LI, Lbl, LBody, Table, TR, TH, TD, THead, TBody, TFoot, Span, Quote, Note, Reference, Figure, Caption, Artifact, Form, Field, Link, Code, Annot, Ruby, Warichu, TOC, TOCI, Index and BibEntry.
document  Document
The document containing the structure element tree.
page  Page  (Optional)
The page on which marked content associated with the structure element node is to be found. This is optional, but is best omitted for nodes which are not associated with marked content.
Exceptions
ExceptionCondition
InvalidOperationExceptionif the object or the owning document has already been closed
ArgumentNullExceptionif tag is .
ArgumentNullExceptionif document is .
See Also