Class PdfLoadedPageLabelCollection
The class provides methods and properties to handle the collections of PdfPageLabel.
Inheritance
System.Object
PdfLoadedPageLabelCollection
Namespace: Syncfusion.Pdf
Assembly: Syncfusion.Pdf.NET.dll
Syntax
public class PdfLoadedPageLabelCollection : Object, IPdfWrapper
Constructors
PdfLoadedPageLabelCollection()
Declaration
public PdfLoadedPageLabelCollection()
Properties
Count
Gets the number of PdfPageLabel from collection (Read only).
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The count. |
Item[Int32]
Gets the PdfPageLabel at the specified index (Read only).
Declaration
public PdfPageLabel this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Property Value
Type |
---|
PdfPageLabel |
Methods
Add(PdfPageLabel)
Add the PdfPageLabel to the collection
Declaration
public void Add(PdfPageLabel pageLabel)
Parameters
Type | Name | Description |
---|---|---|
PdfPageLabel | pageLabel | The pdf page label. |