EnsureVisible Method
         
         
         
	Summary
Ensures that the specified thumbnail item is visible within the control, scrolling the contents of the control if necessary.
 
	Syntax
  
Public Sub EnsureVisible( _ 
   ByVal thumbIndex As Integer _ 
)  
 
Parameters
thumbIndex
The thumbnail item to scroll into view.
 
 
	Example
This example ensures that the currently selected thumbnail is visible.
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.Web.Controls; 
 
public void WebThumbnailViewer_EnsureVisible(WebThumbnailViewer webThumbnailViewer) 
{ 
   if (webThumbnailViewer.SelectedIndex != -1) 
      webThumbnailViewer.EnsureVisible(webThumbnailViewer.SelectedIndex); 
} 
 
Imports Leadtools 
Imports Leadtools.Codecs 
Imports Leadtools.ImageProcessing 
Imports Leadtools.Web.Controls 
 
Public Sub WebThumbnailViewer_EnsureVisible(ByVal webThumbnailViewer As WebThumbnailViewer) 
   If webThumbnailViewer.SelectedIndex <> -1 Then 
      webThumbnailViewer.EnsureVisible(webThumbnailViewer.SelectedIndex) 
   End If 
End Sub