Image page number to display.
public int Page { get; set; } Public Property Page As Integer
The 1-based page number index in Image to display. The default value is 1.
Set up the RasterImageList control to an individual page of a multi-page file in each item. To do that, simply set the Image property of each item into the multi-page image, then set the Page property to the desired page.
The value of RasterImage.Page is not used to control the page number of the item to be viewed in this item. Instead, use the Page property. This allows the same Leadtools.RasterImage object to be used multiple items while setting the Page property to different values.
This example will create and populate a RasterImageList control with thumbnail of the pages in a multi-page image file.
using Leadtools.WinForms;using Leadtools;using Leadtools.Codecs;public void RasterImageListItem_Page(RasterImageList imageList){// Initialize the RasterCodecs classRasterCodecs codecs = new RasterCodecs();// Clear existing itemsimageList.Items.Clear();// Load a multi-page filestring fileName = Path.Combine(LEAD_VARS.ImagesDir, "eye.gif");RasterImage image = codecs.Load(fileName);// Create the items (1 for each page)for (int page = 1; page <= image.PageCount; page++){RasterImageListItem item = new RasterImageListItem();item.Image = image; // Use the same image for all itemsitem.Page = page; // But with a different page numberitem.Text = "Page " + page.ToString();// Add the item to the image listimageList.Items.Add(item);}}static class LEAD_VARS{public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";}
Imports Leadtools.WinFormsImports LeadtoolsImports Leadtools.CodecsPublic Sub RasterImageListItem_Page(ByVal imageList As RasterImageList)' Initialize the RasterCodecs classDim codecs As RasterCodecs = New RasterCodecs()' Clear existing itemsimageList.Items.Clear()' Load a multi-page fileDim fileName As String = Path.Combine(LEAD_VARS.ImagesDir, "eye.gif")Dim image As RasterImage = codecs.Load(fileName)' Create the items (1 for each page)Dim page As Integer = 1Do While page <= image.PageCountDim item As RasterImageListItem = New RasterImageListItem()item.Image = image ' Use the same image for all itemsitem.Page = page ' But with a different page numberitem.Text = "Page " & page.ToString()' Add the item to the image listimageList.Items.Add(item)page += 1LoopEnd SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
