Exemple #1
0
 public static void convertTagsToDataGroup(string unparsed)
 {
     try
     {
         TagsToDataGroupConverter.Run();
     }
     catch (Exception ex)
     {
         ex.Alert();
     }
 }
Exemple #2
0
 public static void convertTagsToDataGroup(string unparsed)
 {
     try
     {
         TagsToDataGroupConverter.Run();
     }
     catch (Exception ex)
     {
         Logger.Log.Error(ex);
         ex.ShowMessageBox();
     }
 }
Exemple #3
0
        public bool SetTags()
        {
            BCOM.Element bcomElement;
            FrameList.GetElement(out bcomElement);

            bool res = false;

            foreach (TagToDataGroupMapProperty mapTag in TagsToDataGroupMapping.Instance.Items)
            {
                res |= TagsToDataGroupConverter.SetMapTagOnElement(bcomElement, mapTag);
            }
            return(res);
        }