In This Topic
Adds the specified image (currently stored as PNG format) to this sheet with the specified location, and settings.
Syntax
'Declaration
Public Sub AddImage( _
ByVal () As Byte, _
ByVal As ImageInfo, _
ByVal As Color, _
ByVal As Color, _
ByVal columnLeft As Integer, _
ByVal As Short, _
ByVal As Integer, _
ByVal As Short, _
ByVal columnRight As Integer, _
ByVal As Short, _
ByVal As Integer, _
ByVal As Short, _
ByVal As String _
)
public void AddImage(
byte[] ,
ImageInfo ,
Color ,
Color ,
int columnLeft,
short ,
int ,
short ,
int columnRight,
short ,
int ,
short ,
string
)
Parameters
- imageData
- This is an image object that represents the image to be placed on the sheet.
- imageOptions
- lineColor
- backColor
- columnLeft
- Column containing the upper-left corner of the object's bounding rectangle.
- dxL
- X (horizontal) position of the upper-left corner of the object's bounding rectangle, relative to the left side of the underlying cell (specified in colL), expressed as 1/1024th of the cell's width.
- rowTop
- Row containing the upper-left corner of the object's bounding rectangle.
- dyT
- Y (vertical) position of the upper-left corner of the object's bounding rectangle, relative to the top of the underlying cell, expressed as 1/1024th of the cell's height.
- columnRight
- Column containing the lower-right corner of the object's bounding rectangle.
- dxR
- X (horizontal) position of the lower-right corner of the object's bounding rectangle, relative to the left side of the underlying cell, expressed as 1/1024th of the cell's width.
- rowBottom
- Row containing the lower-right corner of the object's bounding rectangle.
- dyB
- Y (vertical) position of the lower-right corner of the object's bounding rectangle, relative to the top of the underlying cell, expressed as 1/1024th of the cell's height.
- hyperlink
- If you want the image to have a clickable hyperlink specify the URL here. Otherwide use an empty string.
See Also