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


The name.
The source.
The row.
The row offset.
The column.
The column offset.
The picture width.
The picture height.
Adds the picture.
Syntax
'Declaration
 
Public Overloads Function AddPicture( _
   ByVal name As String, _
   ByVal source As Uri, _
   ByVal row As Integer, _
   ByVal rowOffset As Double, _
   ByVal column As Integer, _
   ByVal columnOffset As Double, _
   ByVal width As Double, _
   ByVal height As Double _
) As Picture
'Usage
 
Dim instance As Worksheet
Dim name As String
Dim source As Uri
Dim row As Integer
Dim rowOffset As Double
Dim column As Integer
Dim columnOffset As Double
Dim width As Double
Dim height As Double
Dim value As Picture
 
value = instance.AddPicture(name, source, row, rowOffset, column, columnOffset, width, height)
public Picture AddPicture( 
   string name,
   Uri source,
   int row,
   double rowOffset,
   int column,
   double columnOffset,
   double width,
   double height
)

Parameters

name
The name.
source
The source.
row
The row.
rowOffset
The row offset.
column
The column.
columnOffset
The column offset.
width
The picture width.
height
The picture height.
Example
This example uses the AddPicture method.
gcSpreadSheet1.Sheets[0].AddPicture("png", new Uri("C:\\artwork\\chartarea.png"));
//gcSpreadSheet1.Sheets[0].AddPicture("png", new Uri("C:\\artwork\\chartarea.png"), 0, 0, 300, 200);
//gcSpreadSheet1.Sheets[0].AddPicture("png", new Uri("C:\\artwork\\chartarea.png"), 0, 1, 1, 2, 200, 200);
//gcSpreadSheet1.Sheets[0].AddPicture("png", new Uri("C:\\artwork\\chartarea.png"), 0, 5, 1, 5, 6, 10, 5, 10);
GcSpreadSheet1.Sheets(0).AddPicture("png", new Uri("C:\artwork\chartarea.png"))
'GcSpreadSheet1.Sheets(0).AddPicture("png", new Uri("C:\artwork\chartarea.png"), 0, 0, 300, 200)
'GcSpreadSheet1.Sheets(0).AddPicture("png", new Uri("C:\artwork\chartarea.png"), 0, 1, 1, 2, 200, 200)
'GcSpreadSheet1.Sheets(0).AddPicture("png", new Uri("C:\artwork\chartarea.png"), 0, 5, 1, 5, 6, 10, 5, 10)
Requirements

Target Platforms: Windows Server 2012, Windows RT

See Also

Reference

Worksheet Class
Worksheet Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.

Support Options