Name | Description | |
---|---|---|
![]() | BackColor | Gets or sets the background color of the control area. |
![]() | Description | Gets or sets the alternate description for the picture. Used in the Html Export for the "alt" img tag property. |
![]() | HyperLink | Gets or sets a URL address that can be used in the viewer's HyperLink event to navigate to the specified location. The URL is automatically converted into an anchor tag or a hyperlink in HTML and PDF exports. |
![]() | Image | Gets or sets the Image to be printed in the Picture control. |
![]() | ImageBytes | Gets or sets the Image to be printed in the Picture control. This snippet shows how to load data in script into Picture instance with name "Picture1". public void Detail_Format() { this.Picture1.ImageBytes = System.IO.File.ReadAllBytes("\\mycompany.gif"); } This snippet shows how to load data in code-based reports into Picture instance with name "picture1". Subscribe to event Section.Format of Detail of your report. private void detail_Format(object sender, System.EventArgs eArgs) { this.picture1.ImageBytes = System.IO.File.ReadAllBytes("\\mycompany.gif"); } |
![]() | LineColor | Gets or sets the border line color around the picture control. |
![]() | LineStyle | Gets or sets the pen style used to paint the border around the picture control. |
![]() | LineWeight | Gets or sets the pen width of the line in pixels. |
![]() | PictureAlignment | Gets or sets the position of the image within the control area. |
![]() | SizeMode | Gets or sets a value that determines how the image is sized to fit the Picture control area. |
![]() | Title | Gets or sets a URL address that can be used in the viewer's HyperLink event to navigate to the specified location. The URL is automatically converted into an anchor tag or a hyperlink in HTML and PDF exports. |