IVsTextLayer.CanReplaceLines 方法
命名空間: Microsoft.VisualStudio.TextManager.Interop
組件: Microsoft.VisualStudio.TextManager.Interop (在 Microsoft.VisualStudio.TextManager.Interop.dll 中)
語法
'宣告
Function CanReplaceLines ( _
iStartLine As Integer, _
iStartIndex As Integer, _
iEndLine As Integer, _
iEndIndex As Integer, _
iNewLen As Integer _
) As Integer
int CanReplaceLines(
int iStartLine,
int iStartIndex,
int iEndLine,
int iEndIndex,
int iNewLen
)
int CanReplaceLines(
[InAttribute] int iStartLine,
[InAttribute] int iStartIndex,
[InAttribute] int iEndLine,
[InAttribute] int iEndIndex,
[InAttribute] int iNewLen
)
abstract CanReplaceLines :
iStartLine:int *
iStartIndex:int *
iEndLine:int *
iEndIndex:int *
iNewLen:int -> int
function CanReplaceLines(
iStartLine : int,
iStartIndex : int,
iEndLine : int,
iEndIndex : int,
iNewLen : int
) : int
參數
iStartLine
類型:Int32[in]起始行。
iStartIndex
類型:Int32[in]起始的行內的字元索引 (必須是 < = 列的長度)。
iEndLine
類型:Int32[in]結束行。
iEndIndex
類型:Int32[in]結束的行內的字元索引 (必須是 < = 列的長度)。
iNewLen
類型:Int32[in]若要插入,如果有任何的字元數目。
傳回值
類型:Int32
如果此方法將會成功,則會傳回S_OK。如果失敗,它就會傳回錯誤碼。
備註
COM 簽章
從 textmgr.idl:
HRESULT IVsTextLayer::CanReplaceLines(
[in] long iStartLine,
[in] CharIndex iStartIndex,
[in] long iEndLine,
[in] CharIndex iEndIndex,
[in] long iNewLen
);
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。