namespace com.azkoss.excellite { using System; using System.ComponentModel; /// ///Base class for row and column collections. /// public abstract class ExcelRowColumnCollectionBase : ExcelRowColumnCellCollectionBase { // Methods /// ///Internal. /// /// [EditorBrowsable(EditorBrowsableState.Never)] protected ExcelRowColumnCollectionBase(ExcelWorksheet parent) : base(parent) { } // Fields internal int MaxOutlineLevel; } }