Class DocumentMetadata
Document level metadata
Contains information about the entire document, such as total pages and table counts.
Also includes per-page metadata.
Inheritance
System.Object
DocumentMetadata
Namespace: IronPdf.Extractions
Assembly: IronPdf.dll
Syntax
public class DocumentMetadata : Object
Constructors
DocumentMetadata()
Declaration
public DocumentMetadata()
Properties
PageMetadata
Dictionary containing metadata for each page
Key is the page number (1-based), value is the PageMetadata for that page.
Declaration
public Dictionary<int, PageMetadata> PageMetadata { get; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.Dictionary<System.Int32, PageMetadata> |
TableCount
Total number of tables found in the document
Declaration
public int TableCount { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
TotalPages
Total number of pages in the document
Declaration
public int TotalPages { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |