Interface
IFixedDocumentPresenter

Represents fixed document presenter.

Definition

Namespace:Telerik.Windows.Documents.UI

Assembly:Telerik.Windows.Controls.FixedDocumentViewers.dll

Syntax:

cs-api-definition
public interface IFixedDocumentPresenter

Properties

CurrentPage

Gets the current page.

Declaration

cs-api-definition
RadFixedPage CurrentPage { get; }

Property Value

RadFixedPage

The current page.

Owner

Gets the owner.

Declaration

cs-api-definition
IFixedDocumentViewer Owner { get; }

Property Value

IFixedDocumentViewer

The owner.

PointerHandlersController

Gets the mouse handlers controller.

Declaration

cs-api-definition
PointerHandlersController PointerHandlersController { get; }

Property Value

PointerHandlersController

The mouse handlers controller.

Methods

GetLocationFromViewPoint(Point, out RadFixedPage, out Point)

Gets the location from view point.

Declaration

cs-api-definition
bool GetLocationFromViewPoint(Point viewPoint, out RadFixedPage page, out Point location)

Parameters

viewPoint

Point

The view point.

page

RadFixedPage

The page.

location

Point

The location.

Returns

bool

GetViewPointFromLocation(RadFixedPage, Point, out Point)

Gets the view point from location.

Declaration

cs-api-definition
bool GetViewPointFromLocation(RadFixedPage page, Point location, out Point viewPoint)

Parameters

page

RadFixedPage

The page.

location

Point

The location.

viewPoint

Point

The view point.

Returns

bool

GoToDestination(Destination)

Goes to destination.

Declaration

cs-api-definition
void GoToDestination(Destination destination)

Parameters

destination

Destination

The destination.

GoToPage(int)

Goes to page.

Declaration

cs-api-definition
void GoToPage(int pageNo)

Parameters

pageNo

int

The page no.

HideSelectionMarkers()

Hides the selection markers.

Declaration

cs-api-definition
void HideSelectionMarkers()

Initialize(IFixedDocumentViewer)

Initializes the presenter.

Declaration

cs-api-definition
void Initialize(IFixedDocumentViewer owner)

Parameters

owner

IFixedDocumentViewer

The owner.

Initialize(IFixedDocumentViewer, IFixedDocumentPresenter)

Initializes the specified owner.

Declaration

cs-api-definition
void Initialize(IFixedDocumentViewer owner, IFixedDocumentPresenter presenter)

Parameters

owner

IFixedDocumentViewer

The owner.

presenter

IFixedDocumentPresenter

The presenter.

InvalidateArrange()

Invalidates the arrange.

Declaration

cs-api-definition
void InvalidateArrange()

InvalidateMeasure()

Invalidates the measure.

Declaration

cs-api-definition
void InvalidateMeasure()

PageDown()

Pages down.

Declaration

cs-api-definition
void PageDown()

PageUp()

Pages up.

Declaration

cs-api-definition
void PageUp()

Release()

Releases the presenter.

Declaration

cs-api-definition
void Release()

ShowSelectionMarkers()

Shows the selection markers.

Declaration

cs-api-definition
void ShowSelectionMarkers()

UpdatePresenterLayout()

Updates the presenter layout.

Declaration

cs-api-definition
void UpdatePresenterLayout()

Events

CurrentPageChanged

Occurs when current page is changed.

Declaration

cs-api-definition
event EventHandler<CurrentPageChangedEventArgs> CurrentPageChanged

Event Value

EventHandler<CurrentPageChangedEventArgs>