You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
616 B
C#

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