public void clearAll()
        {
            if (m_Properties == null)
            {
                return;
            }

            for (int i = 0; i < m_Properties.count; i++)
            {
                m_Properties[i].close();
            }

            m_Properties.clear();
        }