|
//------------------------------------------------------------------------------
// <copyright file="ToolStripItemAlignment.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Windows.Forms {
using System;
using System.ComponentModel;
/// <include file='doc\ToolStripItemAlignment.uex' path='docs/doc[@for="ToolStripItemAlignment"]/*' />
/// <devdoc>
/// This enum is used to determine alignment of the ToolStripItem on the ToolStrip.
/// </devdoc>
public enum ToolStripItemAlignment {
Left=0x0,
Right=0x1,
}
}
|