This documentation is archived and is not being maintained.

Image.FrameDimensionsList Property

Gets an array of GUIDs that represent the dimensions of frames within this Image object.

[Visual Basic]
Public ReadOnly Property FrameDimensionsList As Guid ()
[C#]
public Guid[] FrameDimensionsList {get;}
[C++]
public: __property Guid get_FrameDimensionsList();
[JScript]
public function get FrameDimensionsList() : Guid[];

Property Value

An array of GUIDs that specify the dimensions of frames within this Image object from most significant to least significant.

Remarks

This method returns information about multiple-frame images, which come in two styles: multiple page and multiple resolution.

A multiple-page image is an image that contains more than one image. Each page contains a single image(or frame). These pages (or images, or frames) are typically displayed in succession to produce an animated sequence, such as an animated .gif file.

A multiple-resolution image is an image that contains more than one copy of an image at different resolutions. This is commonly used by mip-mapping where the displayed image size determines the resolution of the image used for drawing. GDI+ can support an arbitrary number of pages (or images, or frames), as well as an arbitrary number of resolutions. The defined dimensions are properties of the FrameDimension object.

Requirements

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also

Image Class | Image Members | System.Drawing Namespace

Show: