[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.Image.Value

Value Property

Value

Gets or sets the value of the image.

Declaration
public ExpressionInfo Value { get; set; }
Property Value
Type Description
ExpressionInfo

An ExpressionInfo object containing the value of the image.

Remarks

The value depends on the Source property setting.

If Source is set to External, the value is the URL or file path of the image.

If Source is set to Embedded, the value is the name of the EmbeddedImage in the report.

If Source is set to Database, the value is the binary data of the image.

Examples
Image image = new Image();
image.Source = ImageSource.Embedded;
image.Value = ExpressionInfo.FromString("LogoImage");