IOleInPlaceSiteWindowless.ScrollRect Method
Enables an object to scroll an area within its in-place active image on the screen.
Namespace: Microsoft.VisualStudio.OLE.Interop
Assembly: Microsoft.VisualStudio.OLE.Interop (in Microsoft.VisualStudio.OLE.Interop.dll)
Syntax
'Declaration
Sub ScrollRect ( _
dx As Integer, _
dy As Integer, _
pRectScroll As RECT(), _
pRectClip As RECT() _
)
void ScrollRect(
int dx,
int dy,
RECT[] pRectScroll,
RECT[] pRectClip
)
void ScrollRect(
[InAttribute] int dx,
[InAttribute] int dy,
[InAttribute] array<RECT>^ pRectScroll,
[InAttribute] array<RECT>^ pRectClip
)
abstract ScrollRect :
dx:int *
dy:int *
pRectScroll:RECT[] *
pRectClip:RECT[] -> unit
function ScrollRect(
dx : int,
dy : int,
pRectScroll : RECT[],
pRectClip : RECT[]
)
Parameters
dx
Type: System.Int32[in] Amount to scroll on the x-axis.
dy
Type: System.Int32[in] Amount to scroll on the y-axis.
pRectScroll
Type: array<Microsoft.VisualStudio.OLE.Interop.RECT[][in] Rectangle to scroll, in client coordinates of the containing window. NULL means the full object.
pRectClip
Type: array<Microsoft.VisualStudio.OLE.Interop.RECT[][in] Rectangle to clip to as defined for the Windows API function. Only pixels scrolling into this rectangle are drawn. Pixels scrolling out are not. If this parameter is NULL, the rectangle is not clipped.
Remarks
For information on the COM interface, see IOleInPlaceSiteWindowless::ScrollRect
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.