12 lines
241 B
C#
12 lines
241 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Outline
|
|
{
|
|
public class ColumnOutlineCollection : OutlineCollectionProperty<ColumnOutline>
|
|
{
|
|
internal ColumnOutlineCollection(Worksheet worksheet) : base(worksheet, RowOrColumn.Column)
|
|
{
|
|
}
|
|
}
|
|
}
|