LEADTOOLS Windows Forms (Leadtools.WinForms assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
Codecs Property
See Also 
Leadtools.WinForms Namespace > RasterThumbnailBrowser Class : Codecs Property



Gets or sets the Leadtools.Codecs.RasterCodecs object used to load the thumbnail images.

Syntax

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

Property Value

A Leadtools.Codecs.RasterCodecs object used to load the thumbnail images. Default value is a null reference (Nothing in Visual Basic).

Example

For an example, refer to RasterThumbnailBrowser.

Remarks

The RasterThumbnailBrowser control automatically loads and creates thumbnails for the images found on the disk folder when the RasterThumbnailBrowser.LoadThumbnails method is called. You need to set the Codecs property with an instance of the Leadtools.Codecs.RasterCodecs class to be used to load these images. You can re-use the Leadtools.Codecs.RasterCodecs object that you are using in your main application.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also