C# Класс ARCed.Scintilla.AnnotationCollection

Наследование: IEnumerable
Показать файл Открыть проект Примеры использования класса

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