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



Identifies if a particular file codec is used when processing a call to RasterCodecs.GetInformation or RasterCodecs.GetInformationAsync.

Syntax

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

Property Value

true if the filter codec is used, false otherwise.

Example

For an example, refer to RasterCodecs.GetCodecInformation.

Remarks

A call to has 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 'false', the corresponding file codec is excluded from all phases.

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