[]
Gets or sets a source of the image.
public ImageSource Source { get; set; }
Type | Description |
---|---|
ImageSource | An ImageSource value indicating the source of the image. |
If the source is set to External, the Value property evaluates to the location of the image.
If the source is set to Embedded, the Value property evaluates to the name of the EmbeddedImage in the report.
If the source is set to Database, the Value property evaluates to the binary data of the image.
Image image = new Image();
image.Source = ImageSource.External;
image.Value = ExpressionInfo.FromString("http://example.com/image.jpg");