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

Represents RadWorksheetEditor presenter.

Definition

Properties

Gets or sets the owner.

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

The owner.

Gets the pointer handlers controller.

C#
PointerHandlersController PointerHandlersController { get; }
Property Value:

The pointer handlers controller.

Gets or sets the scroll bars provider.

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

The scroll bars provider.

Gets the value indicating if should show selection markers.

C#
bool ShouldShowSelectionMarkers { get; }
Property Value:

The value indicating if should show selection markers.

Methods

Brings the into view.

C#
void BringIntoView(CellIndex cellIndex)
Parameters:cellIndexCellIndex

Index of the cell.

Focuses this instance.

C#
void Focus()

Gets the cell index from view point.

C#
CellIndex GetCellIndexFromViewPoint(Point point)
Parameters:pointPoint

The view point.

Returns:

CellIndex

The cell index.

Gets the document point from view point.

C#
Point GetDocumentPointFromViewPoint(Point point)
Parameters:pointPoint

The view point.

Returns:

Point

The document point.

Gets the nearest cell index from view point.

C#
CellIndex GetNearestCellIndexFromViewPoint(Point point)
Parameters:pointPoint

The view point.

Returns:

CellIndex

The nearest cell index.

Gets the view point from document point.

C#
Point GetViewPointFromDocumentPoint(Point point)
Parameters:pointPoint

The document point.

Returns:

Point

The view point.

Hides the drop marker.

C#
void HideDropMarker()

Hides the selection markers.

C#
void HideSelectionMarkers()

Moves the drop marker.

C#
void MoveDropMarker(CellIndex position)
Parameters:positionCellIndex

The position.

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.

Shows the drop marker.

C#
void ShowDropMarker(CellIndex position)
Parameters:positionCellIndex

The position.

Shows the selection markers.

C#
void ShowSelectionMarkers()

Updates the view port so the top left cell index is the desired one.

C#
void UpdateToViewWithTopLeftCellIndex(CellIndex topLeftCellIndex)
Parameters:topLeftCellIndexCellIndex

The desired index of the top left visible cell.

Events

Occurs when the UI is updated.

C#
event EventHandler<WorksheetUIUpdatedEventArgs> UIUpdated