Gets or sets element by its index.

Namespace: Spire.Pdf
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 7.9.2.0 (7.9.2.1020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public PdfPageLayer this[
	int index
] { get; set; }
Public Default Property Item ( 
	index As Integer
) As PdfPageLayer
	Get
	Set
public:
property PdfPageLayer^ default[int index] {
	PdfPageLayer^ get (int index);
	void set (int index, PdfPageLayer^ value);
}
member Item : PdfPageLayer with get, set

Parameters

index
Int32

Property Value

PdfPageLayer

Remarks

The layers belonging to the same page can be added to the collection only.

See Also