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

Represents RadSheet editor.

Definition

Namespace:Telerik.WinForms.Controls.Spreadsheet

Assembly:Telerik.WinControls.RadSpreadsheet.dll

Syntax:

C#
public interface IRadSheetEditor : ICommandDescriptorsProvider, ISheetEditor, IUILayerOwner

Derived Classes: RadSheetEditorBaseRadSheetEditorBase<T>RadWorksheetEditor

Inherited Members ICommandDescriptorsProvider.CommandDescriptorsISheetEditor.SheetISheetEditor.PreviewSheetChangingISheetEditor.SheetChangingISheetEditor.PreviewSheetChangedISheetEditor.SheetChanged...

Properties

Gets or sets a value indicating whether scaling is allowed.

C#
bool AllowScaling { get; set; }
Property Value:

The value indicating whether scaling is allowed.

Gets or sets the owner.

C#
RadSpreadsheetElement Owner { get; set; }
Property Value:

The owner.

Gets or sets the scale factor.

C#
Size ScaleFactor { get; set; }
Property Value:

The scale factor.

Gets or sets the scroll bars provider.

C#
IScrollBarsProvider ScrollBarsProvider { get; set; }
Property Value:

The scroll bars provider.

Gets the sheet viewport.

C#
SheetViewport SheetViewport { get; }
Property Value:

The sheet viewport.

Methods

Focuses this instance.

C#
void Focus()

Sets the horizontal offset.

C#
void SetHorizontalOffset(double offset)
Parameters:offsetdouble

The offset.

Sets the vertical offset.

C#
void SetVerticalOffset(double offset)
Parameters:offsetdouble

The offset.

Updates the layout.

C#
void UpdateLayout()

Events

Occurs when the command descriptors are changed.

C#
event EventHandler CommandDescriptorsChanged

Occurs just before key down.

C#
event KeyEventHandler PreviewKeyDown

Occurs when the scale factor is changed.

C#
event EventHandler ScaleFactorChanged

Occurs on UI command error.

C#
event EventHandler<UICommandErrorEventArgs> UICommandError

Occurs when the UI command is executed.

C#
event EventHandler<UICommandExecutedEventArgs> UICommandExecuted

Occurs when the UI command is executing.

C#
event EventHandler<UICommandExecutingEventArgs> UICommandExecuting