public string GetTableInfo(string tableName, TableInfo attribute)
        {
            int    enumvalue = (int)attribute;
            string command   = "TableInfo({0},{1})".FormatWith(tableName, enumvalue);
            string value     = map_info.Eval(command);

            return(value);
        }
Exemple #2
0
 public bool EndOfTable()
 {
     return(MapInfoSession.Eval("EOT({0})".FormatWith(this.TableName)) == "T");
 }