using System;
namespace ZeroLevel.DocumentObjectModel.Flow
{
/// <summary>
/// Content Offset in flow
/// </summary>
public enum FlowAlign : Int32
/// None
None = 0,
/// Flow: left
Left = 1,
/// Flow: right
Right = 2,
/// Block
Center = 3
}
Powered by TurnKey Linux.