mirror of https://github.com/ogoun/Zero.git
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.
30 lines
519 B
30 lines
519 B
using System;
|
|
|
|
namespace ZeroLevel.DocumentObjectModel.Flow
|
|
{
|
|
/// <summary>
|
|
/// Content Offset in flow
|
|
/// </summary>
|
|
public enum FlowAlign : Int32
|
|
{
|
|
/// <summary>
|
|
/// None
|
|
/// </summary>
|
|
None = 0,
|
|
|
|
/// <summary>
|
|
/// Flow: left
|
|
/// </summary>
|
|
Left = 1,
|
|
|
|
/// <summary>
|
|
/// Flow: right
|
|
/// </summary>
|
|
Right = 2,
|
|
|
|
/// <summary>
|
|
/// Block
|
|
/// </summary>
|
|
Center = 3
|
|
}
|
|
} |