Enum BoundsSpecified
Specifies the bounds of the object to use when defining a its size and/or position. Supports a bitwise combination of its member values.
[Flags]
public enum BoundsSpecified
Fields
All = Location | SizeSpecifies that both the location and size are defined.
Height = 8Specifies that the height of the object is defined.
Location = X | YSpecifies that both the X and Y coordinates are defined.
None = 0No bounds are specified.
Size = Width | HeightSpecifies that both the width and height are defined.
Width = 4Specifies that the width of the object is defined.
X = 1Specifies that the left edge of the object is defined.
Y = 2Specifies that the top edge of the object is defined.