Share via


InkPictureSizeMode Enumeration

InkPictureSizeMode Enumeration

Defines values that specify how the picture behaves inside the InkPicture control.

The mode is set by using the SizeMode Leave Site property and is applied to the picture set with the Picture Leave Site property.

Declaration

[C++]

typedef enum InkPictureSizeMode {
    IPSM_AutoSize = 0,
    IPSM_CenterImage = 1,
    IPSM_Normal = 2,
    IPSM_StretchImage = 3
} InkPictureSizeMode;

Members

Name Description
IPSM_AutoSize Specifies that the control auto sizes to fit the picture.
IPSM_CenterImage Specifies that the picture is centered within the control.
IPSM_Normal Specifies that the picture appears at its regular size within the control.
IPSM_StretchImage Specifies that the picture is stretched within the control.

Applies To