Class BaseOperatorCollection

BaseOperatorCollection class

Represents base class for operator collection.

public abstract class BaseOperatorCollection : ICollection<Operator>

Properties

NameDescription
abstract Count { get; }Gets count of operators in the collection.
abstract IsFastTextExtractionMode { get; }Indicates wheather collection is limited to fast text extraction
abstract IsReadOnly { get; }Returns true if collection is read only.
abstract Item { get; set; }Gets operator by its index.

Methods

NameDescription
abstract Add(Operator)Adds new operator into collection.
abstract CancelUpdate()Cancels last update. This method may be called when the change should not raise contents update.
abstract Clear()Clears collection.
abstract Contains(Operator)Checks if operator exists in collection.
abstract CopyTo(Operator[], int)Copies operators into operators list.
abstract GetEnumerator()Returns enumerator for collection
abstract Insert(int, Operator)Inserts operator into collection.
abstract Remove(Operator)Removes operator from collection.
abstract ResumeUpdate()Resumes document update. Updates contents stream in case there are any pending changes.
abstract SuppressUpdate()Suppresses update contents data. The contents stream is not updated until ResumeUpdate is called.

See Also