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

Represents fixed document viewer.

Definition

Namespace:Telerik.Windows.Documents.UI

Assembly:Telerik.Windows.Controls.FixedDocumentViewers.dll

Syntax:

C#
public interface IFixedDocumentViewer

Derived Classes: FixedDocumentViewerBaseRadPdfViewer

Properties

Gets the can horizontally scroll.

C#
bool CanHorizontallyScroll { get; }
Property Value:

The can horizontally scroll.

Gets the can vertically scroll.

C#
bool CanVerticallyScroll { get; }
Property Value:

The can vertically scroll.

Gets the cursors.

C#
CursorsCollection Cursors { get; }
Property Value:

The cursors.

Document

RadFixedDocument

Gets the document.

C#
RadFixedDocument Document { get; set; }
Property Value:

The document.

Gets or sets the fixed document presenter.

C#
IFixedDocumentPresenter FixedDocumentPresenter { get; set; }
Property Value:

The fixed document presenter.

Gets the horizontal scroll bar.

C#
ScrollBar HorizontalScrollBar { get; }
Property Value:

The horizontal scroll bar.

Gets the horizontal scroll offset.

C#
double HorizontalScrollOffset { get; }
Property Value:

The horizontal scroll offset.

Gets or sets the mode.

C#
FixedDocumentViewerMode Mode { get; set; }
Property Value:

The mode.

Gets the rotation angle.

C#
RotationAngle RotationAngle { get; }
Property Value:

The rotation angle.

Gets or sets the scale factor.

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

The scale factor.

Gets the settings.

C#
FixedDocumentViewerSettings Settings { get; }
Property Value:

The settings.

Gets the vertical scroll bar.

C#
ScrollBar VerticalScrollBar { get; }
Property Value:

The vertical scroll bar.

Gets the vertical scroll offset.

C#
double VerticalScrollOffset { get; }
Property Value:

The vertical scroll offset.

Methods

Scrolls to horizontal offset.

C#
void ScrollToHorizontalOffset(double offset)
Parameters:offsetdouble

The offset.

Scrolls to vertical offset.

C#
void ScrollToVerticalOffset(double offset)
Parameters:offsetdouble

The offset.

Events

Occurs when the document is changed.

C#
event EventHandler<DocumentChangedEventArgs> DocumentChanged

Occurs when a hyperlink is clicked.

C#
event EventHandler<HyperlinkClickedEventArgs> HyperlinkClicked

Occurs when the scale factor is changed.

C#
event EventHandler<ScaleFactorChangedEventArgs> ScaleFactorChanged