Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.12.17
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;}
Managed Extensions for C++ 
public: __property bool get_CheckedByInformation();
public: __property void set_CheckedByInformation( 
   bool value
);
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 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