Adds the chart.
Syntax
'Declaration
Public Function AddChart( _
ByVal As ExcelChartType, _
ByVal As System.String, _
ByVal As System.Integer, _
ByVal fromColumn As System.Integer, _
ByVal As System.Integer, _
ByVal toColumn As System.Integer _
) As IExcelChart
'Usage
Dim instance As ExcelWorksheet
Dim chartType As ExcelChartType
Dim chartName As System.String
Dim fromRow As System.Integer
Dim fromColumn As System.Integer
Dim toRow As System.Integer
Dim toColumn As System.Integer
Dim value As IExcelChart
value = instance.AddChart(chartType, chartName, fromRow, fromColumn, toRow, toColumn)
public IExcelChart AddChart(
ExcelChartType ,
System.string ,
System.int ,
System.int fromColumn,
System.int ,
System.int toColumn
)
Parameters
- chartType
- Type of the chart.
- chartName
- Name of the chart.
- fromRow
- From row.
- fromColumn
- From column.
- toRow
- To row.
- toColumn
- To column.
Exceptions
Exception | Description |
System.NotSupportedException | The exception that is thrown when an invoked method is not supported, or when there is an attempt to read, seek, or write to a stream that does not support the invoked functionality. |
System.ArgumentOutOfRangeException | fromRow |
See Also