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

Represents fixed document presenter.

Definition

Namespace:Telerik.Windows.Documents.UI

Assembly:Telerik.Windows.Controls.FixedDocumentViewers.dll

Syntax:

C#
public interface IFixedDocumentPresenter

Derived Classes: FixedDocumentPagesPresenterFixedDocumentPresenterBaseFixedDocumentSinglePageViewPresenter

Properties

CurrentPage

RadFixedPage

Gets the current page.

C#
RadFixedPage CurrentPage { get; }
Property Value:

The current page.

Gets the owner.

C#
IFixedDocumentViewer Owner { get; }
Property Value:

The owner.

Gets the mouse handlers controller.

C#
PointerHandlersController PointerHandlersController { get; }
Property Value:

The mouse handlers controller.

Methods

Gets the location from view point.

C#
bool GetLocationFromViewPoint(Point viewPoint, out RadFixedPage page, out Point location)
Parameters:viewPointPoint

The view point.

pageRadFixedPage

The page.

locationPoint

The location.

Returns:

bool

Gets the view point from location.

C#
bool GetViewPointFromLocation(RadFixedPage page, Point location, out Point viewPoint)
Parameters:pageRadFixedPage

The page.

locationPoint

The location.

viewPointPoint

The view point.

Returns:

bool

Goes to destination.

C#
void GoToDestination(Destination destination)
Parameters:destinationDestination

The destination.

Goes to page.

C#
void GoToPage(int pageNo)
Parameters:pageNoint

The page no.

Hides the selection markers.

C#
void HideSelectionMarkers()

Initializes the specified owner.

C#
void Initialize(IFixedDocumentViewer owner, IFixedDocumentPresenter presenter)
Parameters:ownerIFixedDocumentViewer

The owner.

presenterIFixedDocumentPresenter

The presenter.

Initializes the presenter.

C#
void Initialize(IFixedDocumentViewer owner)
Parameters:ownerIFixedDocumentViewer

The owner.

Invalidates the arrange.

C#
void InvalidateArrange()

Invalidates the measure.

C#
void InvalidateMeasure()

Pages down.

C#
void PageDown()

Pages up.

C#
void PageUp()

Releases the presenter.

C#
void Release()

Shows the selection markers.

C#
void ShowSelectionMarkers()

Updates the presenter layout.

C#
void UpdatePresenterLayout()

Events

Occurs when current page is changed.

C#
event EventHandler<CurrentPageChangedEventArgs> CurrentPageChanged