Search
WorksheetCollection.insert Method (Int32, String)
See Also
 






Creates a new Worksheet object with the specified name and adds it at the specified index within the collection. If a worksheet with the specified name already exists, an exception is thrown.

Namespace: com.mindfusion.spreadsheet
Package: com.mindfusion.spreadsheet

 Syntax

Java  Copy Code

public Worksheet insert (
    int index,
    String name
)

 Parameters

index

The zero-based index where the new worksheet should be added.

name

The name of the new worksheet.

 Return Value

The newly created Worksheet object.

 See Also