←Select platform

CreateFromImage Method

Summary

Creates a new item from a RasterImage object.

Syntax

C#
VB
C++
public static ImageViewerItem CreateFromImage( 
   RasterImage image, 
   int pageNumber 
) 
Public Shared Function CreateFromImage( 
   ByVal image As RasterImage, 
   ByVal pageNumber As Integer 
) As ImageViewerItem 
public:  
   static ImageViewerItem^ CreateFromImage( 
      RasterImage^ image, 
      int pageNumber 
   ) 

Parameters

image

Source image.

pageNumber

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

Return Value

The newly created item if successful.

Remarks

Use CreateFromSvgDocument to create an item from an SVG document.

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

ImageViewerItem item = new ImageViewerItem(); 
item.Image = image; 
item.PageNumber = pageNumber; 

The item is not added to an image viewer using this method. You should use Items the collection to add or insert the item before it can be displayed.

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Controls.WinForms Assembly