CosArray Class

Class for a low-level PDF array object.

Inheritance Hierarchy

System.Object
  BitMiracle.Docotic.Pdf.CosObject
    BitMiracle.Docotic.Pdf.CosArray

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public sealed class CosArray : CosObject
VB
Public NotInheritable Class CosArray
	Inherits CosObject

The CosArray type exposes the following members.

Properties

  NameDescription
Public propertyType
Gets the type of this CosObject.
(Overrides CosObject.Type.)

Methods

  NameDescription
Public methodEquals (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Public methodToString (Inherited from Object.)

Remarks

An array object is a one-dimensional collection of objects arranged sequentially. PDF arrays may be heterogeneous - an array's elements may be any combination of numbers, strings, dictionaries, or any other COS objects, including other arrays. An array may have zero elements.

An example of an array object in a PDF file: [ 549 3.14 false (Ralph) /SomeName ].

See Also