Image page number to display.
Syntax
Visual Basic (Declaration) | |
---|
Public Property Page As Integer |
C# | |
---|
public int Page {get; set;} |
Managed Extensions for C++ | |
---|
public: __property int get_Page();
public: __property void set_Page(
int value
); |
C++/CLI | |
---|
public:
property int Page {
int get();
void set (int value);
} |
Return Value
The 1-based page number index in
Image to display. Default value is 1.
Example
This example will create and populate a <see cref="RasterImageList"/> control with thumbnail of the pages in
multi-page image file.
Visual Basic | Copy Code |
---|
Public Sub RasterImageListItem_Page(ByVal imageList As RasterImageList)
RasterCodecs.Startup()
Dim codecs As RasterCodecs = New RasterCodecs()
imageList.Items.Clear()
Dim fileName As String = "C:\program files\LEAD Technologies\LEADTOOLS 15\Images\eye.gif"
Dim image As RasterImage = codecs.Load(fileName)
Dim page As Integer = 1
Do While page <= image.PageCount
Dim item As RasterImageListItem = New RasterImageListItem()
item.Image = image
item.Page = page
item.Text = "Page " & page.ToString()
imageList.Items.Add(item)
page += 1
Loop
RasterCodecs.Shutdown()
End Sub |
C# | Copy Code |
---|
public void RasterImageListItem_Page(RasterImageList imageList) { // Initialize the RasterCodecs class RasterCodecs.Startup(); RasterCodecs codecs = new RasterCodecs(); // Clear existing items imageList.Items.Clear(); // Load a multi-page file string fileName = @"C:\program files\LEAD Technologies\LEADTOOLS 15\Images\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 items item.Page = page; // But with a different page number item.Text = "Page " + page.ToString(); // Add the item to the image list imageList.Items.Add(item); } RasterCodecs.Shutdown(); } |
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also