| PdfViewerScrollOwner Property |
Gets or sets a ScrollViewer element that controls scrolling behavior.
Namespace: Patagames.Pdf.Net.Controls.WpfAssembly: Patagames.Pdf.Wpf (in Patagames.Pdf.Wpf.dll) Version: 4.94.2704
Syntax public ScrollViewer ScrollOwner { get; set; }
Public Property ScrollOwner As ScrollViewer
Get
Set
public:
virtual property ScrollViewer^ ScrollOwner {
ScrollViewer^ get () sealed;
void set (ScrollViewer^ value) sealed;
}
abstract ScrollOwner : ScrollViewer with get, set
override ScrollOwner : ScrollViewer with get, set
/** @property */
public final ScrollViewer get_ScrollOwner()
/** @property */
public final void set_ScrollOwner(ScrollViewer value)
function get_ScrollOwner();
function set_ScrollOwner(value);
Property Value
ScrollViewerA ScrollViewer element that controls scrolling behavior. This property has no default value.
Implements
IScrollInfoScrollOwnerRemarks Logical scrolling enables scrolling to the next element in the logical tree. Physical scrolling, in contrast, scrolls content by a defined measurable increment in a specified direction. If you require physical scrolling instead of logical scrolling, wrap the host Panel element in a ScrollViewer and set the value of its CanContentScroll property to false.
See Also