CompositionDrawingSurface.ScrollWithClip Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ScrollWithClip(PointInt32, RectInt32) |
Scrolls the drawing surface using the specified clip rectangle. |
ScrollWithClip(PointInt32, RectInt32, RectInt32) |
Scrolls the drawing surface with the specified clip rectangle. |
ScrollWithClip(PointInt32, RectInt32)
Scrolls the drawing surface using the specified clip rectangle.
public:
virtual void ScrollWithClip(PointInt32 offset, RectInt32 clipRect) = ScrollWithClip;
/// [Windows.Foundation.Metadata.Overload("ScrollWithClip")]
void ScrollWithClip(PointInt32 const& offset, RectInt32 const& clipRect);
[Windows.Foundation.Metadata.Overload("ScrollWithClip")]
public void ScrollWithClip(PointInt32 offset, RectInt32 clipRect);
function scrollWithClip(offset, clipRect)
Public Sub ScrollWithClip (offset As PointInt32, clipRect As RectInt32)
Parameters
- offset
- PointInt32
The scrolling offset.
- clipRect
- RectInt32
The clipping rectangle to apply.
- Attributes
Windows requirements
Device family |
Windows 10 Creators Update (introduced in 10.0.15063.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v4.0)
|
Applies to
ScrollWithClip(PointInt32, RectInt32, RectInt32)
Scrolls the drawing surface with the specified clip rectangle.
public:
virtual void ScrollWithClip(PointInt32 offset, RectInt32 clipRect, RectInt32 scrollRect) = ScrollWithClip;
/// [Windows.Foundation.Metadata.Overload("ScrollRectWithClip")]
void ScrollWithClip(PointInt32 const& offset, RectInt32 const& clipRect, RectInt32 const& scrollRect);
[Windows.Foundation.Metadata.Overload("ScrollRectWithClip")]
public void ScrollWithClip(PointInt32 offset, RectInt32 clipRect, RectInt32 scrollRect);
function scrollWithClip(offset, clipRect, scrollRect)
Public Sub ScrollWithClip (offset As PointInt32, clipRect As RectInt32, scrollRect As RectInt32)
Parameters
- offset
- PointInt32
The scrolling offset.
- clipRect
- RectInt32
The clipping rectangle to apply.
- scrollRect
- RectInt32
The scrolling rectangle.
- Attributes
Windows requirements
Device family |
Windows 10 Creators Update (introduced in 10.0.15063.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v4.0)
|