CPF/CPF.ReoGrid/PartialGridCopyFlag.cs

18 lines
230 B
C#
Raw Permalink Normal View History

2024-06-24 10:15:59 +08:00
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
}
}