CSReportDll.cReportSectionLines.remove C# (CSharp) Метод

remove() публичный Метод

public remove ( String key ) : void
key String
Результат void
        public void remove(String key)
        {
            try
            {
                cReportSectionLine w_item = item(key);
                if (w_item != null)
                {
                    if (w_item.getControls() != null)
                    {
                        w_item.getControls().clear();
                        w_item.getControls().setSectionLine(null);
                        w_item.getControls().setCopyColl(null);
                    }
                    m_coll.Remove(key);
                    m_keys.Remove(key);
                }

                return;
            }
            catch
            {
            }
        }

Same methods

cReportSectionLines::remove ( int index ) : void