File: winforms\Managed\System\WinForms\FlowDirection.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
namespace System.Windows.Forms {
/// <include file='doc\FlowLayout.uex' path='docs/doc[@for="FlowDirection"]/*' />
    public enum FlowDirection {
        /// <include file='doc\FlowLayout.uex' path='docs/doc[@for="FlowDirection.LeftToRight"]/*' />
        LeftToRight,
        /// <include file='doc\FlowLayout.uex' path='docs/doc[@for="FlowDirection.TopDown"]/*' />
        TopDown,
        /// <include file='doc\FlowLayout.uex' path='docs/doc[@for="FlowDirection.RightToLeft"]/*' />
        RightToLeft,
        /// <include file='doc\FlowLayout.uex' path='docs/doc[@for="FlowDirection.BottomUp"]/*' />
        BottomUp
    }
}