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




Gets or sets a value indicating the color order of 24-bit raw data.

Syntax

Visual Basic (Declaration) 
Public Property RawOrder As RasterByteOrder
Visual Basic (Usage)Copy Code
Dim instance As CodecsStartDecompressOptions
Dim value As RasterByteOrder
 
instance.RawOrder = value
 
value = instance.RawOrder
C# 
public RasterByteOrder RawOrder {get; set;}
Managed Extensions for C++ 
public: __property RasterByteOrder get_RawOrder();
public: __property void set_RawOrder( 
   RasterByteOrder value
);
C++/CLI 
public:
property RasterByteOrder RawOrder {
   RasterByteOrder get();
   void set (RasterByteOrder value);
}

Return Value

A RasterByteOrder that indicates the color order of 24-bit raw data.

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 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