Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
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.

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);
}

Return 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: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also