New to Telerik UI for WinFormsStart a free 30-day trial

ISheetEditor

Interface

Defines editor operations and change notifications for switching between sheets in a workbook.

Definition

Namespace:Telerik.Windows.Documents.Spreadsheet.Model

Assembly:Telerik.Windows.Documents.Spreadsheet.dll

Syntax:

C#
public interface ISheetEditor

Derived Classes: RadSheetEditorBaseRadSheetEditorBase<T>RadWorksheetEditor

Properties

Gets or sets the currently active sheet being edited.

C#
Sheet Sheet { get; set; }
Property Value:

The sheet.

Events

Raised just before the sheet change completes, allowing final preview.

C#
event EventHandler PreviewSheetChanged

Raised before the active sheet changes, allowing preview or cancellation.

C#
event EventHandler PreviewSheetChanging

Raised after the active sheet has changed to a new sheet.

C#
event EventHandler SheetChanged

Raised during the active sheet change, after preview but before completion.

C#
event EventHandler SheetChanging