←Select platform

UpdateImage Method

Summary

Update the image of an item.

Syntax
C#
C++/CLI
public void UpdateImage( 
   ImageViewerItem item, 
   RasterImage image, 
   int pageNumber 
) 
public:  
   void UpdateImage( 
      ImageViewerItem^ item, 
      RasterImage^ image, 
      int pageNumber 
   ) 

Parameters

item

Item to update

image

New image. If this is null, then the item will be empty after this method returns.

pageNumber

1-based page number of image. Pass 1 if image contains a single page (frame).

Remarks

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; 
Example
C#
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); 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Controls Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.