Skip to main content

SvgImageCollection.FromResources(String, Assembly) Method

Generates a new SvgImageCollection instance filled with images from a project assembly.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v25.2.dll

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

Declaration

public static SvgImageCollection FromResources(
    string resourceBaseName,
    Assembly assembly
)

Parameters

Name Type Description
resourceBaseName String

A String value that specifies the path to assembly images within a project.

assembly Assembly

An Assembly that contains the target embedded resource images.

Returns

Type Description
SvgImageCollection

A SvgImageCollection object that contains images from a project assembly.

Remarks

The code below illustrates how to initialize a collection that stores vector images, located under the “WindowsFormsApp1\Images” folder. Note that in VB.NET you should specify the root folder name only, while in C# the full path name is required.

SvgImageCollection collection = SvgImageCollection.FromResources("WindowsFormsApp1.Images", typeof(Form3).Assembly);

See the SvgImageCollection class description to learn more.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the FromResources(String, Assembly) 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