Esempio n. 1
0
        /// <summary>
        /// Opens a new Map window in Mapinfo using the table supplied as the first layer.
        /// </summary>
        /// <param name="table">The table which will be opened in a new map window.</param>
        /// <returns>A map containing a referance to the newly opened map window. </returns>
        public static MapWindow MapTable(ITable table)
        {
            List <ITable> tablelist = new List <ITable>();

            tablelist.Add(table);
            return(MapWindow.MapTables(tablelist));
        }