Interface ISheetEditor
Defines editor operations and change notifications for switching between sheets in a workbook.
Namespace: Telerik.Windows.Documents.Spreadsheet.Model
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public interface ISheetEditor
Properties
Sheet
Gets or sets the currently active sheet being edited.
Declaration
Sheet Sheet { get; set; }
Property Value
|
Sheet
The sheet. |
Events
PreviewSheetChanged
Raised just before the sheet change completes, allowing final preview.
Declaration
event EventHandler PreviewSheetChanged
Event Type
|
System.EventHandler
|
PreviewSheetChanging
Raised before the active sheet changes, allowing preview or cancellation.
Declaration
event EventHandler PreviewSheetChanging
Event Type
|
System.EventHandler
|
SheetChanged
Raised after the active sheet has changed to a new sheet.
Declaration
event EventHandler SheetChanged
Event Type
|
System.EventHandler
|
SheetChanging
Raised during the active sheet change, after preview but before completion.
Declaration
event EventHandler SheetChanging
Event Type
|
System.EventHandler
|