Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.4.3
|
Leadtools.Controls Assembly > Leadtools.Controls Namespace > ImageViewerItems Class : UpdateImage Method |
public void UpdateImage( ImageViewerItem item, RasterImage image, int pageNumber )
'Declaration
Public Sub UpdateImage( _ ByVal item As ImageViewerItem, _ ByVal image As RasterImage, _ ByVal pageNumber As Integer _ )
This method lets you quickly update the ImageViewerItem.Image value. It is the equivalent of the following code:
ImageViewerItem item = imageViewer.Items[some index];
item.Image = image;
Imports Leadtools Imports Leadtools.Controls Imports Leadtools.Codecs Imports Leadtools.Drawing Imports Leadtools.ImageProcessing Imports Leadtools.ImageProcessing.Color Imports Leadtools.Svg Dim image As RasterImage = RasterImage.Create(200, 200, 24, 96, RasterColor.White) _imageViewer.Items.UpdateImage(_imageViewer.ActiveItem, image, 1)
using Leadtools; using Leadtools.Controls; using Leadtools.Codecs; using Leadtools.Drawing; using Leadtools.ImageProcessing; using Leadtools.ImageProcessing.Color; using Leadtools.Svg; RasterImage image = RasterImage.Create(200, 200, 24, 96, RasterColor.White); _imageViewer.Items.UpdateImage(_imageViewer.ActiveItem, image, 1);