Beispiel #1
0
 /// <summary>
 /// Show the dialog to join an Excel table with a feature set.
 /// </summary>
 /// <param name="layer">Layer whose join to excel table dialog is shown.</param>
 public void ExcelJoin(IFeatureSet layer)
 {
     using (var jd = new JoinDialog(layer))
     {
         ShowDialog(jd);
     }
 }
 /// <summary>
 /// Show the dialog to join an Excel table with a feature set.
 /// </summary>
 /// <param name="e"></param>
 public void ExcelJoin(IFeatureSet e)
 {
     using (var jd = new JoinDialog(e))
     {
         ShowDialog(jd);
     }
 }
Beispiel #3
0
        private static void ExcelJoinClicked(object sender, FeatureSetEventArgs e)
        {
            JoinDialog jd = new JoinDialog(e.FeatureSet);

            if (jd.ShowDialog() != DialogResult.OK)
            {
                return;
            }
        }
 private static void ExcelJoinClicked(object sender, FeatureSetEventArgs e)
 {
     JoinDialog jd = new JoinDialog(e.FeatureSet);
     if (jd.ShowDialog() != DialogResult.OK) return;
 }