共用方式為


IVsTextLayer.CopyLineText 方法

將指定的文字範圍放到呼叫端配置的緩衝區

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

語法

'宣告
Function CopyLineText ( _
    iStartLine As Integer, _
    iStartIndex As Integer, _
    iEndLine As Integer, _
    iEndIndex As Integer, _
    pszBuf As IntPtr, _
    <OutAttribute> ByRef pcchBuf As Integer _
) As Integer
int CopyLineText(
    int iStartLine,
    int iStartIndex,
    int iEndLine,
    int iEndIndex,
    IntPtr pszBuf,
    out int pcchBuf
)
int CopyLineText(
    [InAttribute] int iStartLine, 
    [InAttribute] int iStartIndex, 
    [InAttribute] int iEndLine, 
    [InAttribute] int iEndIndex, 
    [InAttribute] IntPtr pszBuf, 
    [InAttribute] [OutAttribute] int% pcchBuf
)
abstract CopyLineText : 
        iStartLine:int * 
        iStartIndex:int * 
        iEndLine:int * 
        iEndIndex:int * 
        pszBuf:IntPtr * 
        pcchBuf:int byref -> int
function CopyLineText(
    iStartLine : int, 
    iStartIndex : int, 
    iEndLine : int, 
    iEndIndex : int, 
    pszBuf : IntPtr, 
    pcchBuf : int
) : int

參數

  • iStartLine
    類型:Int32

    [in]起始線

  • iStartIndex
    類型:Int32

    [in]起始的行內的字元索引 (必須是 < = 列的長度)

  • iEndLine
    類型:Int32

    [in]結束行

  • iEndIndex
    類型:Int32

    [in]結束的行內的字元索引 (必須是 < = 列的長度)

  • pszBuf
    類型:IntPtr

    [in]如果有任何插入的文字

  • pcchBuf
    類型:Int32%

    輸入 [、 輸出]輸入時,若要複製的字元數。 在輸出時,所需的緩衝區大小。 計數為 UNICODE 字元,不是位元組。

傳回值

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

備註

COM 簽章

從 textmgr.idl:

HRESULT IVsTextLayer::CopyLineText(
   [in] long iStartLine,
   [in] CharIndex iStartIndex,
   [in] long iEndLine,
   [in] CharIndex iEndIndex,
   [in] LPWSTR pszBuf,
   [in, out] long * pcchBuf
);

CopyLineText將複製到cchBuf個字元。 如果緩衝區不大, CopyLineText會傳回BUFFER_E_DEST_TOO_SMALL ,並設定 * 所需的大小。

注意事項注意事項

pcchBuf包含 UNICODE 字元,而不是位元組的計數。

若要取得必要的大小,您可以設定pszBuf到nullnull 參考 (即 Visual Basic 中的 Nothing)。

.NET Framework 安全性

請參閱

參考

IVsTextLayer 介面

Microsoft.VisualStudio.TextManager.Interop 命名空間