コード例 #1
0
        public string GetTableInfo(string tableName, TableInfo attribute)
        {
            int    enumvalue = (int)attribute;
            string command   = "TableInfo({0},{1})".FormatWith(tableName, enumvalue);
            string value     = miSession.Eval(command);

            return(value);
        }
コード例 #2
0
 public bool EndOfTable()
 {
     return(MapinfoSession.Eval("EOT({0})".FormatWith(this.TableName)) == "T");
 }
コード例 #3
0
        public object RunSystemInfoCommand(SystemInfoEnum systemInfoEnum)
        {
            string command = "SystemInfo({0})".FormatWith((int)systemInfoEnum);

            return(misession.Eval(command));
        }