You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.4 KiB
73 lines
1.4 KiB
3 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace CommonClassLib
|
||
|
{
|
||
|
class CellDefine
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// �����
|
||
|
/// </summary>
|
||
|
public enum CellModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// ������
|
||
|
/// </summary>
|
||
|
commonCell = 1,
|
||
|
|
||
|
/// <summary>
|
||
|
/// ������
|
||
|
/// </summary>
|
||
|
bigCell = 2,
|
||
|
|
||
|
/// <summary>
|
||
|
/// ����
|
||
|
/// </summary>
|
||
|
smallCell = 3
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// �����洢����
|
||
|
/// </summary>
|
||
|
public enum CellType
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// �������ϴ洢
|
||
|
/// </summary>
|
||
|
sameSingle = 1,
|
||
|
|
||
|
/// <summary>
|
||
|
/// ͬ�ֶ�������
|
||
|
/// </summary>
|
||
|
sameSome = 2,
|
||
|
|
||
|
/// <summary>
|
||
|
/// �����ϻ���
|
||
|
/// </summary>
|
||
|
someMerge = 3
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// �����ṹ
|
||
|
/// </summary>
|
||
|
public enum CellStruct
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// ����λ
|
||
|
/// </summary>
|
||
|
singleCell = 1,
|
||
|
|
||
|
/// <summary>
|
||
|
/// ˫����λ
|
||
|
/// </summary>
|
||
|
doubleExtend = 2,
|
||
|
|
||
|
/// <summary>
|
||
|
/// ˫��λ
|
||
|
/// </summary>
|
||
|
doubleCell = 3
|
||
|
}
|
||
|
}
|
||
|
}
|