[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWorksheets.Select

Select Method

Select(bool)

Selects the worksheets in this collection.

Declaration
void Select(bool replace = true)
Sub [Select](Optional replace As Boolean = True)
Parameters
Type Name Description
bool replace true to replace the current selection; false to extend the current selection to include these worksheets.
Examples
worksheet.Name = "Data";
workbook.Worksheets.Add().Name = "Summary";
IWorksheets sheets = workbook.Worksheets[new string[] {"Data", "Summary"}];
sheets.Select();