Click or drag to resize

PdfObjectExtensionsGetArray(PdfCollection) Method

Gets the PdfArray that serves as a backing storage of the specified PdfCollection.

Namespace: SautinSoft.Pdf.Objects
Assembly: SautinSoft.Pdf (in SautinSoft.Pdf.dll) Version: 2024.8.8
Syntax
public static PdfArray GetArray(
	this PdfCollection collection
)

Parameters

collection  PdfCollection
The PdfCollection for which the backing PdfArray should be retrieved.

Return Value

PdfArray
A PdfArray that serves as a backing storage of the specified PdfCollection.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type PdfCollection. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
ArgumentNullExceptioncollection is .
Remarks
Caution note  Caution
Changes made to the returned PdfArray are not verified to be in accordance with the PDF Specification ISO 32000-1:2008 so make them at your own risk.
See Also