Click or drag to resize

PdfLinePointCollectionT Class

Represent the collection of line points.
Inheritance Hierarchy
SystemObject
  Patagames.Pdf.Net.AnnotationsPdfLinePointCollectionT

Namespace: Patagames.Pdf.Net.Annotations
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.89.2704
Syntax
public class PdfLinePointCollection<T> : IList<FS_POINTF>, 
	ICollection<FS_POINTF>, IEnumerable<FS_POINTF>, IEnumerable
where T : PdfAnnotation

Type Parameters

T
Underlying type used with this collection.

The PdfLinePointCollectionT type exposes the following members.

Constructors
 NameDescription
Public methodPdfLinePointCollectionT Initialize a new instance of PdfLinePointCollectionT
Public methodPdfLinePointCollectionT(PdfTypeArray) Initialize a new instance of PdfLinePointCollectionT with specified line points array
Public methodPdfLinePointCollectionT(FS_POINTF, FS_POINTF) Initialize a new instance of PdfLinePointCollectionT with specified points
Public methodPdfLinePointCollectionT(FS_POINTF, FS_POINTF, FS_POINTF) Initialize a new instance of PdfLinePointCollectionT with specified points
Top
Properties
 NameDescription
Public propertyCount Gets the number of FS_POINTF contained in the collection.
Public propertyIsDisposed Gets a value indicating whether the underlying array has been disposed of.
Public propertyIsReadOnly Gets a value indicating whether the collection is read-only.
Public propertyItem Gets or sets the FS_POINTF at the specified index
Top
Methods
 NameDescription
Public methodAdd Adds a FS_POINTF to the collection
Public methodClear Removes all FS_POINTF from the collection
Public methodContains Determines whether the collection contains a specific FS_POINTF.
Public methodCopyTo Copies the elements of the collections to an System.Array, starting at a particular System.Array index.
Protected methodFinalize Releases all lresources used by the collection.
(Overrides ObjectFinalize)
Public methodGetEnumerator Returns an enumerator that iterates through the collection.
Public methodIndexOf Determines the index of a specific FS_POINTF in the collection.
Public methodInsert Inserts a FS_POINTF to the collection at the specified index.
Public methodRemove Removes the first occurrence of a specific FS_POINTF from the collection.
Public methodRemoveAt Removes the FS_POINTF at the specified index.
Top
Remarks
The maximum number of points in a collection depends on the usage context. Currently it is 2 if type of T is PdfLineAnnotation, 3 if type of T is PdfFreeTextAnnotation and unlimited for others.
See Also