IVsTextStream.ReplaceStream 方法
處理編輯,如換行、 行聯結,等等。
命名空間: Microsoft.VisualStudio.TextManager.Interop
組件: Microsoft.VisualStudio.TextManager.Interop (在 Microsoft.VisualStudio.TextManager.Interop.dll 中)
語法
'宣告
Function ReplaceStream ( _
iPos As Integer, _
iOldLen As Integer, _
pszText As IntPtr, _
iNewLen As Integer _
) As Integer
int ReplaceStream(
int iPos,
int iOldLen,
IntPtr pszText,
int iNewLen
)
int ReplaceStream(
[InAttribute] int iPos,
[InAttribute] int iOldLen,
[InAttribute] IntPtr pszText,
[InAttribute] int iNewLen
)
abstract ReplaceStream :
iPos:int *
iOldLen:int *
pszText:IntPtr *
iNewLen:int -> int
function ReplaceStream(
iPos : int,
iOldLen : int,
pszText : IntPtr,
iNewLen : int
) : int
參數
iPos
類型:Int32[in]文字緩衝區中的起始位置。
iOldLen
類型:Int32[in]若要重新載入文字的長度。
pszText
類型:IntPtr[in]若要插入的文字。
iNewLen
類型:Int32[in]新插入的文字的長度。
傳回值
類型:Int32
如果此方法將會成功,則會傳回S_OK。如果失敗,它就會傳回錯誤碼。
備註
COM 簽章
從 textmgr.idl:
HRESULT IVsTextStream::ReplaceStream(
[in] long iPos,
[in] long iOldLen,
[in] LPCOLESTR pszText,
[in] long iNewLen
);
您可以使用這個方法來完成的文字緩衝區中的任何變更。 若要取代文字,而不會取代標記,請使用ReloadStream。
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。