C# 클래스 AvalonStudio.TextEditor.Utils.RopeTextReader

TextReader implementation that reads text from a rope.
상속: System.IO.TextReader
파일 보기 프로젝트 열기: VitalElement/AvalonStudio

공개 메소드들

메소드 설명
Peek ( ) : int
Read ( ) : int
Read ( char buffer, int index, int count ) : int
RopeTextReader ( Rope rope ) : System

Creates a new RopeTextReader. Internally, this method creates a Clone of the rope; so the text reader will always read through the old version of the rope if it is modified. Rope{T}.Clone()

비공개 메소드들

메소드 설명
GoToLeftMostLeaf ( ) : void
GoToNextNode ( ) : void

메소드 상세

Peek() 공개 메소드

public Peek ( ) : int
리턴 int

Read() 공개 메소드

public Read ( ) : int
리턴 int

Read() 공개 메소드

public Read ( char buffer, int index, int count ) : int
buffer char
index int
count int
리턴 int

RopeTextReader() 공개 메소드

Creates a new RopeTextReader. Internally, this method creates a Clone of the rope; so the text reader will always read through the old version of the rope if it is modified. Rope{T}.Clone()
public RopeTextReader ( Rope rope ) : System
rope Rope
리턴 System