Skip to main content
Version: 3.5

PictureBoxSizeMode

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Specifies how an image is positioned within a PictureBox.

public enum PictureBoxSizeMode : Enum

Fields

NameDescription
AutoSizeThe PictureBox is sized equal to the size of the image that it contains.
CenterImageThe image is displayed in the center if the PictureBox is larger than the image. If the image is larger than the PictureBox, the picture is placed in the center of the PictureBox and the outside edges are clipped.
CoverThe image is resized to cover the entire container, even if it has to stretch the image or cut a little bit off one of the edges.
NormalThe image is placed in the upper-left corner of the PictureBox. The image is clipped if it is larger than the PictureBox it is contained in.
StretchImageThe image within the PictureBox is stretched or shrunk to fit the size of the PictureBox.
ZoomThe size of the image is increased or decreased maintaining the size ratio.

Used By

NameDescription
PictureBox.SizeModeIndicates how the image is displayed.