18 lines
230 B
C#
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
|
|
}
|
|
}
|