[]
Gets or sets the value of the image.
public ExpressionInfo Value { get; set; }
Type | Description |
---|---|
ExpressionInfo | An ExpressionInfo object containing the value of the image. |
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.
Image image = new Image();
image.Source = ImageSource.Embedded;
image.Value = ExpressionInfo.FromString("LogoImage");