Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.5.5
|
Leadtools.Web.Controls Namespace > WebThumbnailViewer Class : Clear Method |
public void Clear()
'Declaration Public Sub Clear()
'Usage Dim instance As WebThumbnailViewer instance.Clear()
public: void Clear();
This example clears the thumbnails if there any.
Imports Leadtools Imports Leadtools.Codecs Imports Leadtools.Web.Controls Public Sub WebThumbnailViewer_Clear(ByVal webThumbnailViewer As WebThumbnailViewer) If (webThumbnailViewer.Count > 1) Then webThumbnailViewer.Clear() End If End Sub
using Leadtools; using Leadtools.Codecs; using Leadtools.Web.Controls; public void WebThumbnailViewer_Clear(WebThumbnailViewer webThumbnailViewer) { if(webThumbnailViewer.Count > 1) { webThumbnailViewer.Clear(); } }