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



Gets or sets indicate how bytes in the image are to be filled by the source.

Syntax

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

Return Value

Indicate how bytes in the image are to be filled by the source. Possible values are (according to the TWAIN 2.0 specification): TwainCapabilityValue.BitOrderLsbFirst bytes are to be transferred with the least significant byte first, TwainCapabilityValue.BitOrderMsbFirst bytes are to be transferred with the most significant byte first

Example

Refer to TwainProperties.DataTransfer example.

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