C# 클래스 ARCed.Scintilla.AnnotationCollection

상속: IEnumerable
파일 보기 프로젝트 열기: borisblizzard/arcreator 1 사용 예제들

Private Properties

프로퍼티 타입 설명
CreateAnnotationInstance Annotation
ShouldSerialize bool

공개 메소드들

메소드 설명
ClearAll ( ) : void

Removes all annotations from the document.

This is equivalent to setting the Annotation.Text property to null for each line.

GetEnumerator ( ) : IEnumerator

Returns an enumerator for the AnnotationCollection.

this ( int lineIndex ) : Annotation

Gets the annotation at the specified line index.

보호된 메소드들

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

Initializes a new instance of the AnnotationCollection class.

비공개 메소드들

메소드 설명
CreateAnnotationInstance ( int lineIndex ) : Annotation
ShouldSerialize ( ) : bool

메소드 상세

AnnotationCollection() 보호된 메소드

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

ClearAll() 공개 메소드

Removes all annotations from the document.
This is equivalent to setting the Annotation.Text property to null for each line.
public ClearAll ( ) : void
리턴 void

GetEnumerator() 공개 메소드

Returns an enumerator for the AnnotationCollection.
public GetEnumerator ( ) : IEnumerator
리턴 IEnumerator

this() 공개 메소드

Gets the annotation at the specified line index.
/// is less than zero. -or- /// is equal to or greater than . ///
public this ( int lineIndex ) : Annotation
lineIndex int The zero-based document line index of the annotation to get.
리턴 Annotation