←Select platform

InsertFromImage Method

Summary

Inserts a new item from a RasterImage objects.

Syntax
C#
C++/CLI
public ImageViewerItem InsertFromImage( 
   int index, 
   RasterImage rasterImage, 
   int pageNumber 
) 
public:  
   ImageViewerItem^ InsertFromImage( 
      int index, 
      RasterImage^ rasterImage, 
      int pageNumber 
   ) 

Parameters

index

0-based index of the item.

rasterImage

Source image.

pageNumber

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

Return Value

The newly created item if successful.

Remarks

Use AddFromSvgDocument to insert an from an SVG document.

This method allows you to quickly insert an item from a RasterImage. It is the equivalent of the following code:

ImageViewerItem item = new ImageViewerItem(); 
item.Image = rasterImage; 
item.PageNumber = pageNumber; 
imageViewer.Items.Insert(index, item); 

If rasterImage is null, then an empty item is added.

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.