Leadtools.WinForms Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
IsLoadingThumbnails Property
See Also 
Leadtools.WinForms Namespace > RasterThumbnailBrowser Class : IsLoadingThumbnails Property



Determines if the control is still loading thumbnails in the background.

Syntax

Visual Basic (Declaration) 
<BrowsableAttribute(False)>
Public ReadOnly Property IsLoadingThumbnails As Boolean
Visual Basic (Usage)Copy Code
Dim instance As RasterThumbnailBrowser
Dim value As Boolean
 
value = instance.IsLoadingThumbnails
C# 
[BrowsableAttribute(false)]
public bool IsLoadingThumbnails {get;}
C++/CLI 
[BrowsableAttribute(false)]
public:
property bool IsLoadingThumbnails {
   bool get();
}

Return Value

true if the control is still loading thumbnails in the background; otherwise, false.

Example

For an example, refer to RasterThumbnailBrowser.

Remarks

When the RasterThumbnailBrowser.LoadThumbnails(String,String,RasterThumbnailBrowserLoadFlags) method is called in a non-blocking manner, the thumbnails for the items will be created in a background thread. You can check the IsLoadingThumbnails property at any time to determine whether the control is still loading thumbnails or not. You can also use the FinishedLoadingThumbnails event to receive notification from the control when the loading operation is complete.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also