Esempio n. 1
0
        private void getExtentTypeOptionsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (_AppClient != null)
            {
                AppTestGenericInputForm aInput = new AppTestGenericInputForm();
                aInput.Text = "Get Extent Type Options";
                aInput.SetItems(1);
                aInput.SetPrompt(0, "Extent Name:");

                if (aInput.ShowDialog() == DialogResult.OK)
                {
                    AppendToOutput("Get Extent Type Options", true);
                    AppendToOutput(_AppClient.GetExtentTypeOptions(aInput.GetValue(0)), true);
                }
            }
        }