共用方式為


IVsTextView.SetSelection 方法

選取指定的文字。

命名空間:  Microsoft.VisualStudio.TextManager.Interop
組件:  Microsoft.VisualStudio.TextManager.Interop (在 Microsoft.VisualStudio.TextManager.Interop.dll 中)

語法

'宣告
Function SetSelection ( _
    iAnchorLine As Integer, _
    iAnchorCol As Integer, _
    iEndLine As Integer, _
    iEndCol As Integer _
) As Integer
int SetSelection(
    int iAnchorLine,
    int iAnchorCol,
    int iEndLine,
    int iEndCol
)
int SetSelection(
    [InAttribute] int iAnchorLine, 
    [InAttribute] int iAnchorCol, 
    [InAttribute] int iEndLine, 
    [InAttribute] int iEndCol
)
abstract SetSelection : 
        iAnchorLine:int * 
        iAnchorCol:int * 
        iEndLine:int * 
        iEndCol:int -> int
function SetSelection(
    iAnchorLine : int, 
    iAnchorCol : int, 
    iEndLine : int, 
    iEndCol : int
) : int

參數

  • iAnchorLine
    類型:Int32

    [in]選取項目的錨定行位置。

  • iAnchorCol
    類型:Int32

    [in]錨點選取項目的資料行位置。 Viewcol 座標可能包括虛擬空間。

  • iEndLine
    類型:Int32

    [in]將選取範圍的結尾行位置。

  • iEndCol
    類型:Int32

    [in]選取範圍的的結束資料行位置。 Viewcol 座標可能包括虛擬空間。

傳回值

類型:Int32
如果此方法將會成功,則會傳回S_OK。如果失敗,它就會傳回錯誤碼。

備註

COM 簽章

從 textmgr.idl:

HRESULT IVsTextView::SetSelection(
   [in] long iAnchorLine,
   [in] ViewCol iAnchorCol,
   [in] long iEndLine,
   [in] ViewCol iEndCol
);

.NET Framework 安全性

請參閱

參考

IVsTextView 介面

Microsoft.VisualStudio.TextManager.Interop 命名空間