다음을 통해 공유


ITextEdit.Replace 메서드 (Int32, Int32, String)

문자 시퀀스를 다른 텍스트로 대체합니다.

네임스페이스:  Microsoft.VisualStudio.Text
어셈블리:  Microsoft.VisualStudio.Text.Data(Microsoft.VisualStudio.Text.Data.dll)

구문

‘선언
Function Replace ( _
    startPosition As Integer, _
    charsToReplace As Integer, _
    replaceWith As String _
) As Boolean
bool Replace(
    int startPosition,
    int charsToReplace,
    string replaceWith
)
bool Replace(
    int startPosition, 
    int charsToReplace, 
    String^ replaceWith
)
abstract Replace : 
        startPosition:int * 
        charsToReplace:int * 
        replaceWith:string -> bool
function Replace(
    startPosition : int, 
    charsToReplace : int, 
    replaceWith : String
) : boolean

매개 변수

  • startPosition
    형식: Int32

    대체를 시작할 버퍼 위치입니다.

  • charsToReplace
    형식: Int32

    교체할 문자 수입니다.

  • replaceWith
    형식: String

    새 텍스트입니다.

반환 값

형식: Boolean
대체가 성공한 경우 true이고, 읽기 전용 영역으로 인해 대체가 금지된 경우 false입니다.

예외

예외 조건
ArgumentNullException

replaceWith이 null입니다.

InvalidOperationException

Apply 또는 Cancel 또는 Dispose 메서드가 이전에이 개체에 대해 호출 되었습니다.

ArgumentOutOfRangeException

startPosition0 보다 작거나 버퍼 길이 보다 클 수 또는 charsToReplace , 0 보다 작은 또는 startPosition + charsToReplace 버퍼의 길이 보다 큽니다.

설명

이 메서드는 먼저 charsToReplace를 삭제한 다음 replaceWith를 삽입할 때와 같은 효과를 갖습니다.

0 문자 빈 문자열로 대체 됩니다 성공 있지만 됩니다 스냅숏을 새로 생성 하거나 발생 한 Changed 이벤트입니다.

.NET Framework 보안

참고 항목

참조

ITextEdit 인터페이스

Replace 오버로드

Microsoft.VisualStudio.Text 네임스페이스