|
VB.NET Syntax Dim imgList As ImageList = New ImageList() Dim i As Integer Dim count As Integer = AxTextReaderAx1.GetPageCount() - 1 For i = 0 To count Dim image As Image image = AxTextReaderAx1.GetPageThumbnail(i) imgList.ImageSize = New System.Drawing.Size(image.Width, image.Height) imgList.Images.Add(image) Next
|