Back to Devexpress

ImageCollection<TImage, TInfo>.GetImage Method

windowsforms-devexpress-dot-utils-dot-imagecollection-2-dot-getimage.md

latest4.5 KB
Original Source

ImageCollection<TImage, TInfo>.GetImage Method

NameParametersDescription
GetImage(Int32, ISvgPaletteProvider, Nullable<Size>, Nullable<SvgImageColorizationMode>)index, palette, size, imageColorizationModeReturns a regular raster image of a specific size. This raster image is produced from a source vector image, and colorized according to the provided palette. Throws the ArgumentOutOfRangeException if the collection has no vector image with the given index.
GetImage(Int32, ISvgPaletteProvider, Single, Nullable<Size>, Nullable<SvgImageColorizationMode>)index, palette, scaleFactor, size, imageColorizationModeReturns a regular raster image of a specific size, scaled according to the size multiplier. This raster image is produced from a source vector image. Throws the ArgumentOutOfRangeException if the collection has no vector image with the given index.
GetImage(Int32, Nullable<Size>, Nullable<SvgImageColorizationMode>)index, size, imageColorizationModeReturns a regular raster image of the desired size. The image is produced from a source vector image. Throws the System.ArgumentOutOfRangeException if the collection has no vector image with the given index.
GetImage(Int32, Single, Nullable<Size>, Nullable<SvgImageColorizationMode>)index, scaleFactor, size, imageColorizationModeReturns a regular raster image of the desired size, scaled according to the size multiplier. The image is produced from a source vector image. Throws the ArgumentOutOfRangeException if the collection has no vector image with the given index.
GetImage(String, ISvgPaletteProvider, Nullable<Size>, Nullable<SvgImageColorizationMode>)name, palette, size, imageColorizationModeReturns a regular raster image of a specific size. This raster image is produced from a source vector image, and colorized according to the provided palette. Returns null if the collection has no vector image with the given name.
GetImage(String, ISvgPaletteProvider, Single, Nullable<Size>, Nullable<SvgImageColorizationMode>)name, palette, scaleFactor, size, imageColorizationModeReturns a regular raster image of a specific size, scaled according to the size multiplier. This raster image is produced from a source vector image and colorized according to the provided palette. Returns null if the collection has no vector image with the given name.
GetImage(String, Nullable<Size>, Nullable<SvgImageColorizationMode>)name, size, imageColorizationModeReturns a regular raster image of a specified size. The image is produced from a source vector image. Returns null if the collection has no vector image with the given name.
GetImage(String, Single, Nullable<Size>, Nullable<SvgImageColorizationMode>)name, scaleFactor, size, imageColorizationModeReturns a regular raster image of the desired size, scaled according to the size multiplier. The image is produced from a source vector image. Returns null if the collection has no vector image with the given name.