XlsPicturesCollection
Add Method (Int32, Int32, Int32, Int32, Image)
 | 
Adds image to the collection.
Namespace:
Spire.Xls.Core.Spreadsheet.Collections
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
 
public IPictureShape Add(
	int topRow,
	int leftColumn,
	int bottomRow,
	int rightColumn,
	Image image
)
 
Public Function Add ( 
	topRow As Integer,
	leftColumn As Integer,
	bottomRow As Integer,
	rightColumn As Integer,
	image As Image
) As IPictureShape
 
public:
virtual IPictureShape^ Add(
	int topRow, 
	int leftColumn, 
	int bottomRow, 
	int rightColumn, 
	Image^ image
) sealed
 
abstract Add : 
topRow : int * 
leftColumn : int * 
bottomRow : int * 
rightColumn : int * 
image : Image -> IPictureShape 
override Add : 
topRow : int * 
leftColumn : int * 
bottomRow : int * 
rightColumn : int * 
image : Image -> IPictureShape 
 
 
 
Parameters
- 
topRow
 
- 
Type:
System
Int32
Top row of a new picture.
 
- 
leftColumn
 
- 
Type:
System
Int32
Left column.
 
- 
bottomRow
 
- 
Type:
System
Int32
Bottom row.
 
- 
rightColumn
 
- 
Type:
System
Int32
Right column.
 
- 
image
 
- 
Type:
System.Drawing
Image
Image.
 
Return Value
Type:
IPictureShape
Added picture.
Implements
IPictures
Add(Int32, Int32, Int32, Int32, Image)
 
See Also