C# Class ARCed.Scintilla.AnnotationCollection

Inheritance: IEnumerable
Afficher le fichier Open project: borisblizzard/arcreator Class Usage Examples

Private Properties

Свойство Type Description
CreateAnnotationInstance Annotation
ShouldSerialize bool

Méthodes publiques

Méthode Description
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.

Méthodes protégées

Méthode Description
AnnotationCollection ( Scintilla scintilla ) : System

Initializes a new instance of the AnnotationCollection class.

Private Methods

Méthode Description
CreateAnnotationInstance ( int lineIndex ) : Annotation
ShouldSerialize ( ) : bool

Method Details

AnnotationCollection() protected méthode

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

ClearAll() public méthode

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

GetEnumerator() public méthode

Returns an enumerator for the AnnotationCollection.
public GetEnumerator ( ) : IEnumerator
Résultat IEnumerator

this() public méthode

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.
Résultat Annotation