Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ImageCollection.GetImageListSize(Object, Nullable<Single>) Method

Returns the size of the images in the specified image list.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v24.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

#Declaration

public static Size GetImageListSize(
    object images,
    float? scaleFactor = null
)

#Parameters

Name Type Description
images Object

An object that represents the source of the images.

#Optional Parameters

Name Type Default Description
scaleFactor Nullable<Single> null

An integer value that specifies a custom scale factor.

#Returns

Type Description
Size

A structure that specifies the height and width of the images in the specified list.

#Remarks

The images parameter is an ImageList or ImageCollection object. If the images parameter is null (Nothing in VB), the method returns System.Drawing.Size.Empty.

See Also