ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / EmbeddedImage Class / ImageData Property
Example

In This Topic
    ImageData Property (EmbeddedImage)
    In This Topic
    Gets or sets a Base-64 encoded data of the image.
    Syntax
    'Declaration
     
    Public Property ImageData As String
    public string ImageData {get; set;}

    Property Value

    A System.String value containing the Base-64 encoded image data.
    Example
    var embeddedImage = new EmbeddedImage
    {
        ImageData = "iVBORw0KGgoAAAANSUhEUgAAA..."
    };
    See Also