Class PdfStampAnnotationCollection
Provides the collection of stamps
Inheritance
System.Object
PdfStampAnnotationCollection
Namespace: Syncfusion.Windows.PdfViewer
Assembly: Syncfusion.PdfViewer.WPF.dll
Syntax
public class PdfStampAnnotationCollection : Object
Properties
Count
Get the total count of the stamps available.
Declaration
public int Count { get; }
Property Value
Type |
---|
System.Int32 |
Item[Int32]
Gets the PdfStampAnnotation by its index from PdfStampAnnotationCollection
Declaration
public PdfStampAnnotation this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Property Value
Type |
---|
PdfStampAnnotation |
Methods
Add(PdfStampAnnotation)
Adds a new stamp to the collection.
Declaration
public void Add(PdfStampAnnotation pdfStampAnnotation)
Parameters
Type | Name | Description |
---|---|---|
PdfStampAnnotation | pdfStampAnnotation |
Clear()
Clears all the stamps in the collection.
Declaration
public void Clear()
RemoveAt(Int32)
Removes the element at the specified index of the PdfStampAnnotationCollection.
Declaration
public void RemoveAt(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index of the element to remove. |