C# 클래스 ARCed.Scintilla.LineWrapping

파일 보기 프로젝트 열기: borisblizzard/arcreator

Private Properties

프로퍼티 타입 설명
ShouldSerialize bool

공개 메소드들

메소드 설명
GetWrapCount ( int lineIndex ) : int

The number of lines displayed when a line of text is wrapped.

WrapLines ( int startLine, int endLine, int width ) : void

Forces the line range specified to wrap at the given pixel width. This operates independently of the current Scintilla line wrapping Mode property.

보호된 메소드들

메소드 설명
LineWrapping ( Scintilla scintilla ) : System

Initializes a new instance of the LineWrapping class.

비공개 메소드들

메소드 설명
ShouldSerialize ( ) : bool

메소드 상세

GetWrapCount() 공개 메소드

The number of lines displayed when a line of text is wrapped.
///// is less than 0 or greater than the line count. /////
public GetWrapCount ( int lineIndex ) : int
lineIndex int The zero-based index of the line to count.
리턴 int

LineWrapping() 보호된 메소드

Initializes a new instance of the LineWrapping class.
protected LineWrapping ( Scintilla scintilla ) : System
scintilla Scintilla The control that created this object.
리턴 System

WrapLines() 공개 메소드

Forces the line range specified to wrap at the given pixel width. This operates independently of the current Scintilla line wrapping Mode property.
///// and do not specify a valid ///// range of lines within the document. /////
public WrapLines ( int startLine, int endLine, int width ) : void
startLine int The zero-based line index to start wrapping.
endLine int The zero-based line index to stop wrapping.
width int /// The maximum width in pixels of the lines to wrap. A value of zero resets forced line wrapping. ///
리턴 void