| PdfLinePointCollectionT Class |
Represent the collection of line points.
Inheritance Hierarchy SystemObject Patagames.Pdf.Net.AnnotationsPdfLinePointCollectionT Namespace: Patagames.Pdf.Net.AnnotationsAssembly: 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
Public Class PdfLinePointCollection(Of T As PdfAnnotation)
Implements IList(Of FS_POINTF), ICollection(Of FS_POINTF),
IEnumerable(Of FS_POINTF), IEnumerable
generic<typename T>
where T : PdfAnnotation
public ref class PdfLinePointCollection : IList<FS_POINTF>,
ICollection<FS_POINTF>, IEnumerable<FS_POINTF>, IEnumerable
type PdfLinePointCollection<'T when 'T : PdfAnnotation> =
class
interface IList<FS_POINTF>
interface ICollection<FS_POINTF>
interface IEnumerable<FS_POINTF>
interface IEnumerable
end
J# supports the use of generic APIs, but not the declaration of new ones.
JavaScript does not support generic types or methods.
Type Parameters
- T
- Underlying type used with this collection.
The PdfLinePointCollectionT type exposes the following members.
Constructors Properties | Name | Description |
---|
| Count |
Gets the number of FS_POINTF contained in the collection.
|
| IsDisposed |
Gets a value indicating whether the underlying array has been disposed of.
|
| IsReadOnly |
Gets a value indicating whether the collection is read-only.
|
| Item |
Gets or sets the FS_POINTF at the specified index
|
TopMethods 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