Exemplo n.º 1
0
 public AnnotationEventArgs(AnnotationBase annotation)
 {
     this.m_Annotation = annotation;
 }
Exemplo n.º 2
0
 public bool Contains(AnnotationBase value)
 {
     return(base.List.Contains(value));
 }
Exemplo n.º 3
0
 public int IndexOf(AnnotationBase value)
 {
     return(base.List.IndexOf(value));
 }
Exemplo n.º 4
0
 public void Remove(AnnotationBase value)
 {
     base.List.Remove(value);
 }
Exemplo n.º 5
0
 public void Insert(int index, AnnotationBase value)
 {
     base.List.Insert(index, value);
 }
Exemplo n.º 6
0
 public int Add(AnnotationBase value)
 {
     return(base.List.Add(value));
 }