PdfArrayCreate(Int32) Method |
Creates a new instance of the
PdfArray class that is empty and has the specified initial capacity.
Namespace: SautinSoft.Pdf.ObjectsAssembly: SautinSoft.Pdf (in SautinSoft.Pdf.dll) Version: 2025.4.23
Syntaxpublic static PdfArray Create(
int capacity
)
Public Shared Function Create (
capacity As Integer
) As PdfArray
Parameters
- capacity Int32
- The number of PdfBasicObjects that the new array can initially store.
Return Value
PdfArray
A new instance of the
PdfArray class that is empty and has the specified initial capacity.
ExceptionsException | Condition |
---|
ArgumentOutOfRangeException | capacity is less than 0. |
See Also