constants PictureDisplayEnum
The PictureDisplayEnum type defines the way the control's Picture is arranged on the control. The Picture property assign a picture to be displayed on the control's background. The PictureDisplay property indicates how the picture is layout on the control's background. The PictureDisplayEnum type supports the following values:

NameValueDescription
UpperLeft0 The picture is vertically aligned at the top, and horizontally aligned on the left.
UpperCenter1 The picture is vertically aligned at the top, and horizontally aligned at the center.
UpperRight2 The picture is vertically aligned at the top, and horizontally aligned on the right.
MiddleLeft16 The picture is vertically aligned in the middle, and horizontally aligned on the left.
MiddleCenter17 The picture is vertically aligned in the middle, and horizontally aligned at the center.
MiddleRight18 The picture is vertically aligned in the middle, and horizontally aligned on the right.
LowerLeft32 The picture is vertically aligned at the bottom, and horizontally aligned on the left.
LowerCenter33 The picture is vertically aligned at the bottom, and horizontally aligned at the center.
LowerRight34 The picture is vertically aligned at the bottom, and horizontally aligned on the right.
Tile48 Tiles the picture on the source.
Stretch49 The picture is resized to fit the source.