17 lines
180 B
C#
17 lines
180 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Interaction
|
|
{
|
|
public enum ResizeThumbPosition
|
|
{
|
|
TopLeft,
|
|
Top,
|
|
TopRight,
|
|
Left,
|
|
Right,
|
|
BottomLeft,
|
|
Bottom,
|
|
BottomRight
|
|
}
|
|
}
|