34 lines
441 B
C#
34 lines
441 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Actions
|
|
{
|
|
public abstract class OutlineAction : BaseOutlineAction
|
|
{
|
|
public int Start
|
|
{
|
|
get
|
|
{
|
|
return this.start;
|
|
}
|
|
}
|
|
|
|
public int Count
|
|
{
|
|
get
|
|
{
|
|
return this.count;
|
|
}
|
|
}
|
|
|
|
public OutlineAction(RowOrColumn rowOrColumn, int start, int count) : base(rowOrColumn)
|
|
{
|
|
this.start = start;
|
|
this.count = count;
|
|
}
|
|
|
|
internal int start;
|
|
|
|
internal int count;
|
|
}
|
|
}
|