Places the specified lines of text in the center of the view.
Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
声明
Function CenterLines ( _
    iTopLine As Integer, _
    iCount As Integer _
) As Integer
用法
Dim instance As IVsTextView
Dim iTopLine As Integer
Dim iCount As Integer
Dim returnValue As Integer
returnValue = instance.CenterLines(iTopLine, _
    iCount)
int CenterLines(
    int iTopLine,
    int iCount
)
int CenterLines(
    [InAttribute] int iTopLine, 
    [InAttribute] int iCount
)
abstract CenterLines : 
        iTopLine:int * 
        iCount:int -> int 
function CenterLines(
    iTopLine : int, 
    iCount : int
) : int
Parameters
- iTopLine
 Type: System.Int32
 [in] First line to place in the center of the view.
- iCount
 Type: System.Int32
 [in] Total number of lines to place in the center of the view.
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::CenterLines(
   [in] long iTopLine, 
   [in] long iCount
);
.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.