ThumbsDirection Property
Summary
Gets or sets the flow of the thumbnail images.
Syntax
Property Value
The flow of the thumbnail images.
Example
This example changes the layout of the WebThumbnailViewer to the required rows x columns.
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.Web.Controls
Public Sub WebThumbnailViewer_ChangeLayout(ByVal webThumbnailViewer As WebThumbnailViewer, _
ByVal rows As Integer, ByVal columns As Integer) 'ex. 2, 4
webThumbnailViewer.Columns = columns
webThumbnailViewer.Rows = rows
webThumbnailViewer.LayoutDirection = LayoutDirection.Vertical
webThumbnailViewer.ThumbsDirection = ThumbnailsDirection.TopToBottom
webThumbnailViewer.Add("Resources\multipage.tif", 1, -1)
End Sub
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Web.Controls;
public void WebThumbnailViewer_ChangeLayout(WebThumbnailViewer webThumbnailViewer, int rows/*ex. 2*/, int columns/*ex. 4*/)
{
webThumbnailViewer.Columns = columns;
webThumbnailViewer.Rows = rows;
webThumbnailViewer.LayoutDirection = LayoutDirection.Vertical;
webThumbnailViewer.ThumbsDirection = ThumbnailsDirection.TopToBottom;
webThumbnailViewer.Add(@"Resources\multipage.tif", 1, -1);
}