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

18 lines
230 B
C#

using System;
namespace CPF.ReoGrid
{
public enum PartialGridCopyFlag
{
All = 61,
CellAll = 13,
CellData = 1,
CellFormula = 4,
CellFormat = 4,
CellStyle = 8,
BorderAll = 48,
HBorder = 16,
VBorder = 32
}
}