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 > ImageViewerItem Class : CreateFromImage Method |
public static ImageViewerItem CreateFromImage( RasterImage image, int pageNumber )
'Declaration
Public Shared Function CreateFromImage( _ ByVal image As RasterImage, _ ByVal pageNumber As Integer _ ) As ImageViewerItem
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.