Skip to main content

ImageCollection<TImage, TInfo>.Insert(Int32, String, String, Type) Method

Adds an image from resources, and places this image to the specific position.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

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

Declaration

public void Insert(
    int index,
    string key,
    string resourceName,
    Type resourceType
)

Parameters

Name Type Description
index Int32

The position the added image should have inside this collection.

key String

The name that the added image will have in this collection.

resourceName String

The image name as it appears in resources.

resourceType Type

The resource class type.

Remarks

The code below adss the “bo_attention” SVG image to the DevExpress.Utils.SvgImageCollection.

svgImageCollection1.Insert(3, "attention", "bo_attention", typeof(WindowsFormsApp1.Properties.Resources));
See Also