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



Gets or sets the image used to display items that have not yet been loaded.

Syntax

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

Return Value

An RasterImage used to display items that have not yet been loaded.

Example

For an example, refer to ErrorThumbnail.

Remarks

During the loading operation as a result of calling the RasterThumbnailBrowser.LoadThumbnails(String,String,RasterThumbnailBrowserLoadFlags) method, the RasterThumbnailBrowser control will create all the items and assign to them the image stored in the LoadingThumbnail property first before actually loading any thumbnails. This will give a visual feedback to the user of which items have been loaded and which are not.

Initially, the value of the LoadingThumbnail property is initialized with an image loaded from the DLL resource. You can however change the value of this property to your own custom image.

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