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 | |
ArgumentOutOfRangeException | startPosition0 보다 작거나 버퍼 길이 보다 클 수 또는 charsToReplace , 0 보다 작은 또는 startPosition + charsToReplace 버퍼의 길이 보다 큽니다. |
설명
이 메서드는 먼저 charsToReplace를 삭제한 다음 replaceWith를 삽입할 때와 같은 효과를 갖습니다.
0 문자 빈 문자열로 대체 됩니다 성공 있지만 됩니다 스냅숏을 새로 생성 하거나 발생 한 Changed 이벤트입니다.
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용를 참조하세요.