[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SheetEventArgs.Sheet

Sheet Property

Sheet

Gets the worksheet associated with this SheetEventArgs.

This property returns the IWorksheet instance carried by the event arguments, such as the worksheet provided to workbook sheet-related events.

Declaration
public IWorksheet Sheet { get; }
Public ReadOnly Property Sheet As IWorksheet
Examples
worksheet.Name = "Data";
SheetEventArgs args = new SheetEventArgs(worksheet);
IWorksheet sheet = args.Sheet;
string name = sheet.Name;