PICTURE
The PICTURE enumeration values describe attributes of a picture object
as returned through the IPicture::get_Attributes method.
typedef enum tagPICTURE
{
PICTURE_SCALABLE = 0x00000001,
PICTURE_TRANSPARENT = 0x00000002
} PICTURE;
Elements
-
PICTURE_SCALABLE
-
The picture object is scalable, such that it can be redrawn with a different
size than was used to create the picture originally. Metafile-based pictures
are considered scalable; icon and bitmap pictures, while they can be scaled,
do not express this attribute because both involve bitmap stretching instead
of true scaling.
-
PICTURE_TRANSPARENT
-
The picture object contains an image that has transparent areas, such that
drawing the picture will not necessarily fill in all the spaces in the
rectangle it occupies. Metafile and icon pictures have this attribute; bitmap
pictures do not.
See Also
IPicture::get_Attributes