Interface IFixedDocumentPresenter
Represents fixed document presenter.
Namespace: Telerik.Windows.Documents.UI
Assembly: Telerik.Windows.Controls.FixedDocumentViewers.dll
Syntax
public interface IFixedDocumentPresenter
Properties
CurrentPage
Gets the current page.
Declaration
RadFixedPage CurrentPage { get; }
Property Value
Telerik.Windows.Documents.Fixed.Model.RadFixedPage
The current page. |
Owner
Gets the owner.
Declaration
IFixedDocumentViewer Owner { get; }
Property Value
IFixedDocumentViewer
The owner. |
PointerHandlersController
Gets the mouse handlers controller.
Declaration
PointerHandlersController PointerHandlersController { get; }
Property Value
PointerHandlersController
The mouse handlers controller. |
Methods
GetLocationFromViewPoint(Point, out RadFixedPage, out Point)
Gets the location from view point.
Declaration
bool GetLocationFromViewPoint(Point viewPoint, out RadFixedPage page, out Point location)
Parameters
System.Windows.Point
viewPoint
The view point. |
Telerik.Windows.Documents.Fixed.Model.RadFixedPage
page
The page. |
System.Windows.Point
location
The location. |
Returns
System.Boolean
|
GetViewPointFromLocation(RadFixedPage, Point, out Point)
Gets the view point from location.
Declaration
bool GetViewPointFromLocation(RadFixedPage page, Point location, out Point viewPoint)
Parameters
Telerik.Windows.Documents.Fixed.Model.RadFixedPage
page
The page. |
System.Windows.Point
location
The location. |
System.Windows.Point
viewPoint
The view point. |
Returns
System.Boolean
|
GoToDestination(Destination)
GoToPage(Int32)
Goes to page.
Declaration
void GoToPage(int pageNo)
Parameters
System.Int32
pageNo
The page no. |
HideSelectionMarkers()
Hides the selection markers.
Declaration
void HideSelectionMarkers()
Initialize(IFixedDocumentViewer)
Initializes the presenter.
Declaration
void Initialize(IFixedDocumentViewer owner)
Parameters
IFixedDocumentViewer
owner
The owner. |
Initialize(IFixedDocumentViewer, IFixedDocumentPresenter)
Initializes the specified owner.
Declaration
void Initialize(IFixedDocumentViewer owner, IFixedDocumentPresenter presenter)
Parameters
IFixedDocumentViewer
owner
The owner. |
IFixedDocumentPresenter
presenter
The presenter. |
InvalidateArrange()
Invalidates the arrange.
Declaration
void InvalidateArrange()
InvalidateMeasure()
Invalidates the measure.
Declaration
void InvalidateMeasure()
PageDown()
Pages down.
Declaration
void PageDown()
PageUp()
Pages up.
Declaration
void PageUp()
Release()
Releases the presenter.
Declaration
void Release()
ShowSelectionMarkers()
Shows the selection markers.
Declaration
void ShowSelectionMarkers()
UpdatePresenterLayout()
Updates the presenter layout.
Declaration
void UpdatePresenterLayout()
Events
CurrentPageChanged
Occurs when current page is changed.
Declaration
event EventHandler<CurrentPageChangedEventArgs> CurrentPageChanged
Event Type
System.EventHandler<CurrentPageChangedEventArgs>
|