Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Workbook Class / CreateEmptyChartSheet Method
A string value indicates the name of the Worksheet.
An integer value indicates the position of the new created Worksheet.


In This Topic
    CreateEmptyChartSheet Method
    In This Topic
    Creates a new Worksheet.
    Syntax
    'Declaration
     
    
    Public Function CreateEmptyChartSheet( _
       Optional ByVal worksheetName As String, _
       Optional ByVal insertAt As Integer _
    ) As Worksheet
    'Usage
     
    
    Dim instance As Workbook
    Dim worksheetName As String
    Dim insertAt As Integer
    Dim value As Worksheet
     
    value = instance.CreateEmptyChartSheet(worksheetName, insertAt)
    public Worksheet CreateEmptyChartSheet( 
       string worksheetName,
       int insertAt
    )

    Parameters

    worksheetName
    A string value indicates the name of the Worksheet.
    insertAt
    An integer value indicates the position of the new created Worksheet.

    Return Value

    A Worksheet value represents the new created Worksheet.
    See Also