C#
VB
C++
Removes all thumbnail elements from the WebThumbnailViewer control.
public void Clear()
Public Sub Clear()
public:
void Clear();
This example clears the thumbnails if there any.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Web.Controls;
public void WebThumbnailViewer_Clear(WebThumbnailViewer webThumbnailViewer)
{
if (webThumbnailViewer.Count > 1)
{
webThumbnailViewer.Clear();
}
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.Web.Controls
''' <!--Leadtools.Web.Controls.WebThumbnailViewer.Add-->
''' <!--Leadtools.Web.Controls.WebThumbnailViewer.Add-->
''' <!--Leadtools.Web.Controls.WebThumbnailViewer.Insert-->
''' <!--Leadtools.Web.Controls.WebThumbnailViewer.Insert-->
''' <!--Leadtools.Web.Controls.WebThumbnailViewer.ThumbsDirection-->
''' <!--Leadtools.Web.Controls.WebThumbnailViewer.ThumbsDirection-->
''' <!--Leadtools.Web.Controls.WebThumbnailViewer.Clear-->
''' <!--Leadtools.Web.Controls.WebThumbnailViewer.Clear-->
''' <!--Leadtools.Web.Controls.WebThumbnailViewer.GetThumbnailInfo-->
''' <!--Leadtools.Web.Controls.WebThumbnailViewer.GetThumbnailInfo-->
''' <!--Leadtools.Web.Controls.WebThumbnailViewer.PropertyChanged-->
''' <!--Leadtools.Web.Controls.WebThumbnailViewer.PropertyChanged-->
Public Sub WebThumbnailViewer_Clear(ByVal webThumbnailViewer As WebThumbnailViewer)
If (webThumbnailViewer.Count > 1) Then
webThumbnailViewer.Clear()
End If
End Sub
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