Document Solutions for PDF
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Annotations Namespace / StampAnnotation Class / Icon Property

In This Topic
    Icon Property (StampAnnotation)
    In This Topic
    Gets or sets a string specifying the name of an icon used to display the annotation.

    The PDF specification provides a predefined set of icons, those are provided by the StampAnnotationIcon enumeration.

    In practice though this entry often contains names of custom icons specific to the application that created the document, hence this property is a string so it can accommodate arbitrary values.

    To assign a predefined icon, use code like the following: Icon = StampAnnotationIcon.Approved.ToString();
    Syntax
    'Declaration
     
    Public Property Icon As System.String
    public System.string Icon {get; set;}
    See Also