///
/// Copyright © 2003-2008 JetBrains s.r.o.
/// You may distribute under the terms of the GNU General Public License, as published by the Free Software Foundation, version 2 (see License.txt in the repository root folder).
///
namespace JetBrains.Interop.WinApi
{
///
/// constants.
///
public enum EditBoxControlMargins : short
{
///
/// Sets the left margin.
///
EC_LEFTMARGIN = 0x0001,
///
/// Sets the right margin.
///
EC_RIGHTMARGIN = 0x0002,
///
/// Rich edit controls: Sets the left and right margins to a narrow width calculated using the text metrics of the control's current font. If no font has been set for the control, the margins are set to zero. The lParam parameter is ignored. Edit controls: The EC_USEFONTINFO value cannot be used in the wParam parameter. It can only be used in the lParam parameter.
///
EC_USEFONTINFO = unchecked((short)0xffff),
}
}