Excel for WPF and Silverlight
XLPictureShape Constructor(WriteableBitmap,Int32,Int32)
Example 

C1.WPF.Excel Namespace > XLPictureShape Class > XLPictureShape Constructor : XLPictureShape Constructor(WriteableBitmap,Int32,Int32)
The image contained in the new XLPictureShape.
The horizontal position of the new shape with respect to the cell, in twips.
The vertical position of the new shape with respect to the cell, in twips.
Initializes a new instance of an XLPictureShape.
Syntax
'Declaration
 
Public Function New( _
   ByVal img As System.Windows.Media.Imaging.WriteableBitmap, _
   ByVal x As System.Integer, _
   ByVal y As System.Integer _
)
public XLPictureShape( 
   System.Windows.Media.Imaging.WriteableBitmap img,
   System.int x,
   System.int y
)

Parameters

img
The image contained in the new XLPictureShape.
x
The horizontal position of the new shape with respect to the cell, in twips.
y
The vertical position of the new shape with respect to the cell, in twips.
Example
The code below adds an image to a cell. The image is rendered in its original size, and is indented from the top left corner of the cell by 30 twips:
// get sheet and cell
XLSheet sheet = c1ExcelBook1.Sheets[0];
XLCell  cell  = sheet[row, col];
            
// build XLPictureShape
XLPictureShape pic = new XLPictureShape(image, 30, 30);
            
// assign XLPictureShape to cell
cell.Value = pic;
See Also

Reference

XLPictureShape Class
XLPictureShape Members
Overload List