txtOutput.Text += "Opening File GDB...";            try {                // Open the geodatabase.                mygdb = Geodatabase.Open("/path/to/file_gdb.gdb");                                               // Open the table.                mytable = mygdb.OpenTable("\\users");            } catch (Exception ex) {                txtOutput.Text += "" + ex.Message.ToString();                return;            }            txtOutput.Text += "";            if (mytable.IsEditable) {                txtOutput.Text += "Editable";            } else {                txtOutput.Text += "NOT Editable";            }
Les membres connectés peuvent publier, suivre les mises à jour, et plus encore. Nouveau ici ? Inscrivez-vous gratuitement.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.