CPF/CPF.ReoGrid/IO/FileFormat.cs

14 lines
166 B
C#
Raw Permalink Normal View History

2024-06-24 10:15:59 +08:00
using System;
namespace CPF.ReoGrid.IO
{
public enum FileFormat : ushort
{
ReoGridFormat = 1,
CSV = 10,
Excel2007 = 30,
_Auto = 0,
_Custom = 100
}
}