Image.FrameDimensionsList Property

Definition

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

public:
 property cli::array <Guid> ^ FrameDimensionsList { cli::array <Guid> ^ get(); };
[System.ComponentModel.Browsable(false)]
public Guid[] FrameDimensionsList { get; }
[<System.ComponentModel.Browsable(false)>]
member this.FrameDimensionsList : Guid[]
Public ReadOnly Property FrameDimensionsList As Guid()

Property Value

Guid[]

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

Attributes

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.

Applies to