CSReportDll.cReportSectionLine.getControls C# (CSharp) Метод

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

public getControls ( ) : cReportControls
Результат cReportControls
        public cReportControls getControls()
        {
            return m_controls;
        }

Usage Example

Пример #1
0
        public void remove(int index)
        {
            try
            {
                cReportSectionLine w_item = item(index);
                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(m_keys[index]);
                    m_keys.RemoveAt(index);
                }

                return;
            }
            catch
            {
            }
        }
All Usage Examples Of CSReportDll.cReportSectionLine::getControls