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

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

public add ( ) : cReportSectionLine
Результат cReportSectionLine
		public cReportSectionLine add()
		{
			return add (null, "", -1);
		}
        public cReportSectionLine add(cReportSectionLine c, String key, int index)

Same methods

cReportSectionLines::add ( cReportSectionLine c, String key, int index ) : cReportSectionLine

Usage Example

Пример #1
0
        public cReportSection()
        {
            m_formulaHide.setName("H");

            // when a new section is create a new line section
            // is automatically added
            //
            m_sectionLines.add(null, "", -1);
        }