IScrollProvider Interface

Definition

Exposes methods and properties to support UI Automation client access to a control that acts as a scrollable container for a collection of child objects. The children of this control must implement IScrollItemProvider.

public interface class IScrollProvider
[System.Runtime.InteropServices.ComVisible(true)]
[System.Runtime.InteropServices.Guid("b38b8077-1fc3-42a5-8cae-d40c2215055a")]
[System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
public interface IScrollProvider
public interface IScrollProvider
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Runtime.InteropServices.Guid("b38b8077-1fc3-42a5-8cae-d40c2215055a")>]
[<System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)>]
type IScrollProvider = interface
type IScrollProvider = interface
Public Interface IScrollProvider
Derived
Attributes

Remarks

Implemented on a UI Automation provider that must support the ScrollPattern control pattern.

Properties

HorizontallyScrollable

Gets a value that indicates whether the control can scroll horizontally.

HorizontalScrollPercent

Gets the current horizontal scroll position.

HorizontalViewSize

Gets the current horizontal view size.

VerticallyScrollable

Gets a value that indicates whether the control can scroll vertically.

VerticalScrollPercent

Gets the current vertical scroll position.

VerticalViewSize

Gets the vertical view size.

Methods

Scroll(ScrollAmount, ScrollAmount)

Scrolls the visible region of the content area horizontally and vertically.

SetScrollPercent(Double, Double)

Sets the horizontal and vertical scroll position as a percentage of the total content area within the control.

Applies to

See also