Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Sets the core text editor's scroll bar settings for the specified scroll bar.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Function SetScrollPosition ( _
iBar As Integer, _
iFirstVisibleUnit As Integer _
) As Integer
int SetScrollPosition(
int iBar,
int iFirstVisibleUnit
)
int SetScrollPosition(
[InAttribute] int iBar,
[InAttribute] int iFirstVisibleUnit
)
abstract SetScrollPosition :
iBar:int *
iFirstVisibleUnit:int -> int
function SetScrollPosition(
iBar : int,
iFirstVisibleUnit : int
) : int
Parameters
- iBar
Type: System.Int32
[in] Specifies a horizontal or vertical scroll bar. Values may be either SB_HORZ or SB_VERT. For more information, see GetScrollInfo in the Platform SDK.
- iFirstVisibleUnit
Type: System.Int32
[in] First visible unit for the scroll bar.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsTextView::SetScrollPosition(
[in] long iBar,
[in] long iFirstVisibleUnit
);
.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.