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

getCopyColl() приватный Метод

private getCopyColl ( ) : cReportControls2
Результат cReportControls2
        internal cReportControls2 getCopyColl()
        {
            return m_copyColl;
        }

Usage Example

Пример #1
0
 private void releaseReferences()
 {
     if (m_sectionLines != null)
     {
         if (m_sectionLines.getCopyColl() != null)
         {
             m_sectionLines.getCopyColl().clear();
             m_sectionLines.setCopyColl(null);
         }
         m_sectionLines = null;
     }
     m_aspect      = null;
     m_formulaHide = null;
 }