CanChangeSeriesType Method
In This Topic
Determines whether this instance can change the series type of the specified source series.
Syntax
'Declaration
Public Function CanChangeSeriesType( _
ByVal As Series _
) As Boolean
'Usage
Dim instance As SpreadChart
Dim sourceSeries As Series
Dim value As Boolean
value = instance.CanChangeSeriesType(sourceSeries)
public bool CanChangeSeriesType(
Series
)
Parameters
- sourceSeries
- The source series.
Return Value
true
if this instance can change the series type to the specified source series; otherwise, false
.
Example
This example uses the CanChangeSeries method.
See Also