presents a category option to choose from
상속: System.Windows.Forms.Form
예제 #1
0
        /// <summary>
        ///
        /// </summary>
        public void Import()
        {
            BrowseCategory bcat = new BrowseCategory(m_activeDoc);

            if (bcat.ShowDialog() == DialogResult.OK)
            {
                Category   category = bcat.Category;
                ElementSet elemSet  = Utils.Selection.FilterToCategory((BuiltInCategory)category.Id.IntegerValue, false, m_activeDoc);
                foreach (Element elem in elemSet)
                {
                    Update(elem);
                }
                m_errorLogger.SaveErrorLog();
            }
        }
예제 #2
0
        /// <summary>
        ///
        /// </summary>
        public void Import()
        {
            BrowseCategory bcat = new BrowseCategory(m_activeDoc);

            if (bcat.ShowDialog() == DialogResult.OK)
            {
                Category category = bcat.Category;
                //ElementSet elemSet = Utils.Selection.FilterToCategory( (BuiltInCategory) category.Id.IntegerValue, false, m_activeDoc );
                ICollection <ElementId> ids = Utils.Selection.FilterToCategory((BuiltInCategory)category.Id.IntegerValue, false, m_activeDoc);
                foreach (ElementId id in ids)
                {
                    Element elem = m_activeDoc.GetElement(id);
                    Update(elem);
                }
                m_errorLogger.SaveErrorLog();
            }
        }
예제 #3
0
 /// <summary>
 /// 
 /// </summary>
 public void Import()
 {
     BrowseCategory bcat = new BrowseCategory( m_activeDoc );
       if( bcat.ShowDialog() == DialogResult.OK )
       {
     Category category = bcat.Category;
     ElementSet elemSet = Utils.Selection.FilterToCategory( (BuiltInCategory) category.Id.IntegerValue, false, m_activeDoc );
     foreach( Element elem in elemSet )
     {
       Update( elem );
     }
     m_errorLogger.SaveErrorLog();
       }
 }
예제 #4
0
 /// <summary>
 /// 
 /// </summary>
 public void Import()
 {
     BrowseCategory bcat = new BrowseCategory( m_activeDoc );
       if( bcat.ShowDialog() == DialogResult.OK )
       {
     Category category = bcat.Category;
     //ElementSet elemSet = Utils.Selection.FilterToCategory( (BuiltInCategory) category.Id.IntegerValue, false, m_activeDoc );
     ICollection<ElementId> ids = Utils.Selection.FilterToCategory( (BuiltInCategory) category.Id.IntegerValue, false, m_activeDoc );
     foreach( ElementId id in ids )
     {
       Element elem = m_activeDoc.GetElement( id );
       Update( elem );
     }
     m_errorLogger.SaveErrorLog();
       }
 }