Exemple #1
0
 public static bool IsAttributeTabOpen(out AttributeTab attributeTab)
 {
     if (m_attributeTab != null)
     {
         attributeTab = m_attributeTab;
         m_attributeTab.Show();
         return(true);
     }
     else
     {
         attributeTab = null;
         return(false);
     }
 }
Exemple #2
0
 public static void AddAttributeTab(AttributeTab form)
 {
     m_attributeTab = form;
 }
Exemple #3
0
 public static void RemoveAttributeTab(AttributeTab form)
 {
     m_attributeTab.Dispose();
     m_attributeTab = null;
 }