GrapeCity.Xaml.SpreadSheet.Data
AddPicture(String,ImageSource,Int32,Double,Int32,Double,Int32,Double,Int32,Double) Method
Example 


GrapeCity.Xaml.SpreadSheet.Data Namespace > Worksheet Class > AddPicture Method : AddPicture(String,ImageSource,Int32,Double,Int32,Double,Int32,Double,Int32,Double) Method
The name.
The source.
The row.
The row offset.
The column.
The column offset.
The end row.
The end row offset.
The end column.
The end column offset.
Adds the picture.
Syntax
'Declaration
 
Public Overloads Function AddPicture( _
   ByVal name As String, _
   ByVal source As ImageSource, _
   ByVal row As Integer, _
   ByVal rowOffset As Double, _
   ByVal column As Integer, _
   ByVal columnOffset As Double, _
   ByVal endRow As Integer, _
   ByVal endRowOffset As Double, _
   ByVal endColumn As Integer, _
   ByVal endColumnOffset As Double _
) As Picture
'Usage
 
Dim instance As Worksheet
Dim name As String
Dim source As ImageSource
Dim row As Integer
Dim rowOffset As Double
Dim column As Integer
Dim columnOffset As Double
Dim endRow As Integer
Dim endRowOffset As Double
Dim endColumn As Integer
Dim endColumnOffset As Double
Dim value As Picture
 
value = instance.AddPicture(name, source, row, rowOffset, column, columnOffset, endRow, endRowOffset, endColumn, endColumnOffset)
public Picture AddPicture( 
   string name,
   ImageSource source,
   int row,
   double rowOffset,
   int column,
   double columnOffset,
   int endRow,
   double endRowOffset,
   int endColumn,
   double endColumnOffset
)

Parameters

name
The name.
source
The source.
row
The row.
rowOffset
The row offset.
column
The column.
columnOffset
The column offset.
endRow
The end row.
endRowOffset
The end row offset.
endColumn
The end column.
endColumnOffset
The end column offset.
Example
This example uses the AddPicture method.
Uri uri = new Uri("C:\\artwork\\chartarea.png", UriKind.Absolute);
BitmapImage img = new BitmapImage(uri);
gcSpreadSheet1.Sheets[0].AddPicture("picture", img);
//gcSpreadSheet1.Sheets[0].AddPicture("picture", img, 0, 0, 300, 200);
//gcSpreadSheet1.Sheets[0].AddPicture("picture", img, 0, 1, 1, 2, 200, 200);
//gcSpreadSheet1.Sheets[0].AddPicture("picture", img, 0, 5, 1, 5, 6, 10, 5, 10);
Dim uri As New Uri("C:\SpreadWPF2\artwork\chartarea.png", UriKind.Absolute)
Dim img As New BitmapImage(uri)
GcSpreadSheet1.Sheets(0).AddPicture("picture", img)
'gcSpreadSheet1.Sheets(0).AddPicture("picture", img, 0, 0, 300, 200)
'gcSpreadSheet1.Sheets(0).AddPicture("picture", img, 0, 1, 1, 2, 200, 200)
'gcSpreadSheet1.Sheets(0).AddPicture("picture", img, 0, 5, 1, 5, 6, 10, 5, 10)
See Also

Reference

Worksheet Class
Worksheet Members
Overload List