Leadtools TWAIN (Leadtools.Twain assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
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);
}

Property 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 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also