Exemplo n.º 1
0
        public string[] PromptForVisioPageNameSelection(IList <string> pageNames)
        {
            PageListForm plf = new PageListForm(pageNames);

            if (plf.ShowDialog(this) == DialogResult.OK)
            {
                return(plf.SelectedPages);
            }
            else
            {
                return(null);
            }
        }
Exemplo n.º 2
0
 public string[] PromptForVisioPageNameSelection(IList<string> pageNames)
 {
     PageListForm plf = new PageListForm(pageNames);
     if (plf.ShowDialog(this) == DialogResult.OK)
         return plf.SelectedPages;
     else
         return null;
 }