using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace GanttChart
{
///
/// 甘特图项的换行模式
///
public enum GanttChartViewItemBlockType
{
///
/// 紧凑
///
Compact,
///
/// 文字超过换行
///
TextOverBlock,
///
/// 强制换行
///
Block,
///
/// 回归
///
Return
}
}