Exemplo n.º 1
0
 public VbComponent(IVBE vbe, string name, ComponentType type, IVBComponents collection)
 {
     VBE        = vbe;
     Type       = type;
     Collection = collection;
     Name       = name;
 }
 private void LoadComponents(IVBComponents componentsCollection)
 {
     foreach (var component in componentsCollection)
     {
         var qmn = component.QualifiedModuleName;
         _components.Add(qmn, component);
     }
 }
Exemplo n.º 3
0
 public bool Equals(IVBComponents other)
 {
     return(Equals(other as SafeComWrapper <VB.VBComponents>));
 }
Exemplo n.º 4
0
 public bool Equals(IVBComponents other)
 {
     throw new NotImplementedException();
 }