IVsTextView.RestrictViewRange Method
Reduces the view’s range of visible/editable lines to a subset of the buffer’s lines.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Function RestrictViewRange ( _
iMinLine As Integer, _
iMaxLine As Integer, _
pClient As IVsViewRangeClient _
) As Integer
int RestrictViewRange(
int iMinLine,
int iMaxLine,
IVsViewRangeClient pClient
)
int RestrictViewRange(
[InAttribute] int iMinLine,
[InAttribute] int iMaxLine,
[InAttribute] IVsViewRangeClient^ pClient
)
abstract RestrictViewRange :
iMinLine:int *
iMaxLine:int *
pClient:IVsViewRangeClient -> int
function RestrictViewRange(
iMinLine : int,
iMaxLine : int,
pClient : IVsViewRangeClient
) : int
Parameters
iMinLine
Type: System.Int32[in] The minimum line number.
iMaxLine
Type: System.Int32[in] The maximum line number.
pClient
Type: Microsoft.VisualStudio.TextManager.Interop.IVsViewRangeClient[in] The view range client.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
.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.