public AnnotationEventArgs(AnnotationBase annotation) { this.m_Annotation = annotation; }
public bool Contains(AnnotationBase value) { return(base.List.Contains(value)); }
public int IndexOf(AnnotationBase value) { return(base.List.IndexOf(value)); }
public void Remove(AnnotationBase value) { base.List.Remove(value); }
public void Insert(int index, AnnotationBase value) { base.List.Insert(index, value); }
public int Add(AnnotationBase value) { return(base.List.Add(value)); }