Sets or returns an int that represents the number of columns in this section.

 public int NumColumns{ get; set; }
Public Property NumColumns() As Integer


          //--- Return NumColumns
          int numColumns = oSection.NumColumns;

          //--- Set NumColumns
          oSection.NumColumns = 2;
        

          '--- Return NumColumns
          Dim numColumns As Integer = oSection.NumColumns

          '--- Set NumColumns
          oSection.NumColumns = 2