Leadtools.CF Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.6.15
NoInterlace Property
See Also 
Leadtools.Codecs Namespace > CodecsOptions.CodecsLoadOptions Class : NoInterlace Property



Enables or disables loading image files as interlaced.

Syntax

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

Return Value

When set to true, the RasterCodecs.Load method will pass image data in the order that is displayed, regardless of how it is stored in the file.

Remarks

Set this flag if your program does not handle interlaced file formats.

Requirements

Target Platforms: Microsoft .NET CF Framework 2.0, Windows Mobile 5 PocketPC, Windows Mobile 5 Smartphone, Windows Mobile 6

See Also