Esempio n. 1
0
 public void RenameTableName(string oldName, string newName)
 {
     if (BindingImageInfo != null)
     {
         BindingImageInfo.RenameTableName(oldName, newName);
     }
 }
Esempio n. 2
0
        public IEnumerable <LocatedObject <object> > GetFormulaReferObjects(LocationIndicator location)
        {
            if (IsBinding && BindingImageInfo != null)
            {
                return(BindingImageInfo.GetFormulaReferObjects(location));
            }

            return(Enumerable.Empty <LocatedObject <object> >());
        }
Esempio n. 3
0
        public IEnumerable <LocatedObject <TableCheckInfo> > GetTableInfo(LocationIndicator location)
        {
            if (IsBinding && BindingImageInfo != null)
            {
                return(BindingImageInfo.GetTableInfo(location));
            }

            return(Enumerable.Empty <LocatedObject <TableCheckInfo> >());
        }