| File: System\Windows\Forms\BoundsSpecified.cs | Web Access |
| Project: src\winforms\src\System.Windows.Forms\System.Windows.Forms.csproj (System.Windows.Forms) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Windows.Forms; /// <summary> /// Specifies the bounds of the control to use when defining a control's size /// and position. /// </summary> [Flags] public enum BoundsSpecified { /// <summary> /// Specifies the left edge of the control is defined. /// </summary> X = 0x1, /// <summary> /// Specifies the top edge of the control of the control is defined. /// </summary> Y = 0x2, /// <summary> /// Specifies the width of the control is defined. /// </summary> Width = 0x4, /// <summary> /// Specifies the height of the control is defined. /// </summary> Height = 0x8, /// <summary> /// Both <see cref="X"/> and <see cref="Y"/> coordinates of the /// control are defined. /// </summary> Location = X | Y, /// <summary> /// Both <see cref="Control.Width"/> and <see cref="Control.Height"/> /// property values of the control are defined. /// </summary> Size = Width | Height, /// <summary> /// Both <see cref="Control.Location"/> and <see cref="Control.Size"/> /// property values are defined. /// </summary> All = Location | Size, /// <summary> /// No bounds are specified. /// </summary> None = 0, }