DocumentViewerBase::OnBringIntoView Method (DependencyObject^, Rect, Int32)

 

Invoked whenever the RequestBringIntoView event reaches an element derived from this class in its route. Implement this method to add class handling for this event.

Namespace:   System.Windows.Controls.Primitives
Assembly:  PresentationFramework (in PresentationFramework.dll)

protected:
virtual void OnBringIntoView(
	DependencyObject^ element,
	Rect rect,
	int pageNumber
)

Parameters

element
Type: System.Windows::DependencyObject^

The element from which the RequestBringIntoView event originated.

rect
Type: System.Windows::Rect

A rectangular region, in the coordinate space of element, which should be made visible.

pageNumber
Type: System::Int32

The page number for the page that contains element.

Exception Condition
ArgumentNullException

Raised if element is null.

The base implementation of this method will cause the viewer to jump to the page indicated by pageNumber.

.NET Framework
Available since 3.0
Return to top
Show: