Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

ImageLoader.GetLargeImageInfo(String) Method

Supplies metadata on a large image.

Namespace: DevExpress.ExpressApp.Utils

Assembly: DevExpress.ExpressApp.v20.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public ImageInfo GetLargeImageInfo(
    string imageName
)

Parameters

Name Type Description
imageName String

A string holding the name of the required image. This parameter is case-insensitive.

Returns

Type Description
ImageInfo

An ImageInfo object supplying metadata on a large image.

Remarks

To customize metadata returned by the GetLargeImageInfo method, handle the ImageLoader.CustomizeImageInfo event.

For general guidelines on using images in an XAF application, refer to the Add and Override Images help topic.

The following code snippet illustrates use of the GetLargeImageInfo method. The code retrieves the large Action_Open image.

using System.Drawing;
//...
Image image = ImageLoader.Instance.GetLargeImageInfo("Action_Open").Image;

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the GetLargeImageInfo(String) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also