Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
LoadOrder Property
See Also 
Leadtools.Codecs Namespace > CodecsStartDecompressOptions Structure : LoadOrder Property



Gets or sets a value indicating the color order after a 24-bit image is loaded.

Syntax

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

Return Value

A RasterByteOrder that indicates the color order after a 24-bit image is loaded.

This is ignored if the image is palettized. Possible values are:

ValueMeaning
RasterByteOrder.RgbData is RGB
RasterByteOrder.BgrData is BGR

Example

For an example, refer to RasterCodecs.StartDecompress.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also