Document Solutions for PDF
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Annotations Namespace / ButtonAppearance Class / Image Property

In This Topic
    Image Property (ButtonAppearance)
    In This Topic
    Gets or sets the button's image specified by the GrapeCity.Documents.Pdf.Graphics.IXObject interface.

    You can use GrapeCity.Documents.Pdf.Graphics.Images.PdfImageHandler to assign an image to this property, for example: GrapeCity.Documents.Drawing.Image img = Image.FromFile("example.png"); btn.ButtonAppearance.DownAppearance.Image = doc.ImageHandlers.GetImageHandler(img);

    Syntax
    'Declaration
     
    Public Property Image As IXObject
    public IXObject Image {get; set;}
    See Also