OvalShapeCollection
AddOval Method
|
Adds an oval shape to the specified position with the given dimensions.
Namespace:
Spire.Xls.Core.Spreadsheet.Collections
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public IOvalShape AddOval(
int row,
int column,
int height,
int width
)
Public Function AddOval (
row As Integer,
column As Integer,
height As Integer,
width As Integer
) As IOvalShape
public:
virtual IOvalShape^ AddOval(
int row,
int column,
int height,
int width
) sealed
abstract AddOval :
row : int *
column : int *
height : int *
width : int -> IOvalShape
override AddOval :
row : int *
column : int *
height : int *
width : int -> IOvalShape
Parameters
-
row
-
Type:
System
Int32
The row index where the top-left corner of the oval will be placed.
-
column
-
Type:
System
Int32
The column index where the top-left corner of the oval will be placed.
-
height
-
Type:
System
Int32
The height of the oval.
-
width
-
Type:
System
Int32
The width of the oval.
Return Value
Type:
IOvalShape
The newly created oval shape.
Implements
IOvalShapes
AddOval(Int32, Int32, Int32, Int32)
See Also