CPF/CPF.ReoGrid/RowOrColumn.cs
2024-06-24 10:15:59 +08:00

12 lines
110 B
C#

using System;
namespace CPF.ReoGrid
{
public enum RowOrColumn : byte
{
Row = 1,
Column,
Both
}
}