14 lines
166 B
C#
14 lines
166 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace CPF.ReoGrid.IO
|
|||
|
{
|
|||
|
public enum FileFormat : ushort
|
|||
|
{
|
|||
|
ReoGridFormat = 1,
|
|||
|
CSV = 10,
|
|||
|
Excel2007 = 30,
|
|||
|
_Auto = 0,
|
|||
|
_Custom = 100
|
|||
|
}
|
|||
|
}
|