Interface IFixedDocumentViewer
Represents fixed document viewer.
Namespace: Telerik.Windows.Documents.UI
Assembly: Telerik.Windows.Controls.FixedDocumentViewers.dll
Syntax
public interface IFixedDocumentViewer
Properties
CanHorizontallyScroll
Gets the can horizontally scroll.
Declaration
bool CanHorizontallyScroll { get; }
Property Value
System.Boolean
The can horizontally scroll. |
CanVerticallyScroll
Gets the can vertically scroll.
Declaration
bool CanVerticallyScroll { get; }
Property Value
System.Boolean
The can vertically scroll. |
Cursors
Gets the cursors.
Declaration
CursorsCollection Cursors { get; }
Property Value
CursorsCollection
The cursors. |
Document
Gets the document.
Declaration
RadFixedDocument Document { get; set; }
Property Value
Telerik.Windows.Documents.Fixed.Model.RadFixedDocument
The document. |
FixedDocumentPresenter
Gets or sets the fixed document presenter.
Declaration
IFixedDocumentPresenter FixedDocumentPresenter { get; set; }
Property Value
IFixedDocumentPresenter
The fixed document presenter. |
HorizontalScrollBar
Gets the horizontal scroll bar.
Declaration
ScrollBar HorizontalScrollBar { get; }
Property Value
System.Windows.Controls.Primitives.ScrollBar
The horizontal scroll bar. |
HorizontalScrollOffset
Gets the horizontal scroll offset.
Declaration
double HorizontalScrollOffset { get; }
Property Value
System.Double
The horizontal scroll offset. |
Mode
Gets or sets the mode.
Declaration
FixedDocumentViewerMode Mode { get; set; }
Property Value
FixedDocumentViewerMode
The mode. |
RotationAngle
Gets the rotation angle.
Declaration
RotationAngle RotationAngle { get; }
Property Value
RotationAngle
The rotation angle. |
ScaleFactor
Gets or sets the scale factor.
Declaration
double ScaleFactor { get; set; }
Property Value
System.Double
The scale factor. |
Settings
Gets the settings.
Declaration
FixedDocumentViewerSettings Settings { get; }
Property Value
FixedDocumentViewerSettings
The settings. |
VerticalScrollBar
Gets the vertical scroll bar.
Declaration
ScrollBar VerticalScrollBar { get; }
Property Value
System.Windows.Controls.Primitives.ScrollBar
The vertical scroll bar. |
VerticalScrollOffset
Gets the vertical scroll offset.
Declaration
double VerticalScrollOffset { get; }
Property Value
System.Double
The vertical scroll offset. |
Methods
ScrollToHorizontalOffset(Double)
Scrolls to horizontal offset.
Declaration
void ScrollToHorizontalOffset(double offset)
Parameters
System.Double
offset
The offset. |
ScrollToVerticalOffset(Double)
Scrolls to vertical offset.
Declaration
void ScrollToVerticalOffset(double offset)
Parameters
System.Double
offset
The offset. |
Events
DocumentChanged
Occurs when the document is changed.
Declaration
event EventHandler<DocumentChangedEventArgs> DocumentChanged
Event Type
System.EventHandler<DocumentChangedEventArgs>
|
ScaleFactorChanged
Occurs when the scale factor is changed.
Declaration
event EventHandler<ScaleFactorChangedEventArgs> ScaleFactorChanged
Event Type
System.EventHandler<ScaleFactorChangedEventArgs>
|