C# 클래스 ICSharpCode.TextEditor.Document.StringTextBufferStrategy

Simple implementation of the ITextBuffer interface implemented using a string. Only for fall-back purposes.
상속: ITextBufferStrategy
파일 보기 프로젝트 열기: jumpinjackie/fdotoolbox 1 사용 예제들

공개 메소드들

메소드 설명
CreateTextBufferFromFile ( string fileName ) : ITextBufferStrategy
GetCharAt ( int offset ) : char
GetText ( int offset, int length ) : string
Insert ( int offset, string text ) : void
Remove ( int offset, int length ) : void
Replace ( int offset, int length, string text ) : void
SetContent ( string text ) : void
StringTextBufferStrategy ( ) : System

비공개 메소드들

메소드 설명
StringTextBufferStrategy ( string fileName ) : System

메소드 상세

CreateTextBufferFromFile() 공개 정적인 메소드

public static CreateTextBufferFromFile ( string fileName ) : ITextBufferStrategy
fileName string
리턴 ITextBufferStrategy

GetCharAt() 공개 메소드

public GetCharAt ( int offset ) : char
offset int
리턴 char

GetText() 공개 메소드

public GetText ( int offset, int length ) : string
offset int
length int
리턴 string

Insert() 공개 메소드

public Insert ( int offset, string text ) : void
offset int
text string
리턴 void

Remove() 공개 메소드

public Remove ( int offset, int length ) : void
offset int
length int
리턴 void

Replace() 공개 메소드

public Replace ( int offset, int length, string text ) : void
offset int
length int
text string
리턴 void

SetContent() 공개 메소드

public SetContent ( string text ) : void
text string
리턴 void

StringTextBufferStrategy() 공개 메소드

public StringTextBufferStrategy ( ) : System
리턴 System