Back to Devexpress

How to: Set an Active Worksheet

officefileapi-12079-spreadsheet-document-api-examples-worksheets-how-to-set-an-active-worksheet.md

latest1.1 KB
Original Source

How to: Set an Active Worksheet

  • Sep 19, 2023

Important

You need a license for the DevExpress Office File API Subscription or DevExpress Universal Subscription to use these examples in production code.

To set an active worksheet within a workbook, assign the corresponding Worksheet object to the WorksheetCollection.ActiveWorksheet property.

View Example

csharp
// Set the second worksheet under the "Sheet2" name as active.
workbook.Worksheets.ActiveWorksheet = workbook.Worksheets["Sheet2"];
vb
' Set the second worksheet under the "Sheet2" name as active.
workbook.Worksheets.ActiveWorksheet = workbook.Worksheets("Sheet2")