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