LEADTOOLS Image File Support (Leadtools.Codecs assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
IsSlowInformation Property
See Also 
Leadtools.Codecs Namespace > CodecsCodecInformation Structure : IsSlowInformation Property



Identifies if a particular file codec has been marked as taking a relatively long time to load a file.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property IsSlowInformation As Boolean
Visual Basic (Usage)Copy Code
Dim instance As CodecsCodecInformation
Dim value As Boolean
 
value = instance.IsSlowInformation
C# 
public bool IsSlowInformation {get;}
C++/CLI 
public:
property bool IsSlowInformation {
   bool get();
}

Property Value

true if the codec takes a long time to load a file, false otherwise.

Example

For an example, refer to RasterCodecs.GetCodecInformation.

Remarks

Value that indicates if the codec takes a long time to load. There are three phases used in identifying a file format. The first phase checks the first few bytes. The second phase checks the file extension. The third phase tries all available codec filters. When this value is 'true', it means that the file format can not be identified by looking at the first few bytes of the file.

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also