28 lines
485 B
C#
28 lines
485 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace CPF.ReoGrid
|
|||
|
{
|
|||
|
internal enum OperationStatus
|
|||
|
{
|
|||
|
Default,
|
|||
|
RangeSelect,
|
|||
|
FullRowSelect,
|
|||
|
FullColumnSelect,
|
|||
|
FullSingleRowSelect,
|
|||
|
FullSingleColumnSelect,
|
|||
|
AdjustRowHeight,
|
|||
|
AdjustColumnWidth,
|
|||
|
DragSelectionFillSerial,
|
|||
|
SelectionRangeMove,
|
|||
|
SelectionRangeMovePrepare,
|
|||
|
RangePicker,
|
|||
|
AdjustPageBreakRow,
|
|||
|
AdjustPageBreakColumn,
|
|||
|
HighlightRangeCreate,
|
|||
|
HighlightRangeSelect,
|
|||
|
HighlightRangeMove,
|
|||
|
HighlightRangeResize,
|
|||
|
CellBodyCapture
|
|||
|
}
|
|||
|
}
|