←Select platform

FillOrder Property

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

Syntax
C#
C++/CLI
Python
public TwainDataTransferFillOrder FillOrder { get; set; } 
public: 
property TwainDataTransferFillOrder FillOrder { 
   TwainDataTransferFillOrder get(); 
   void set (    TwainDataTransferFillOrder ); 
} 
FillOrder # get and set (TwainDataTransferProperties) 

Property Value

Indicate how bytes in the image are to be filled by the source. Possible values are (according to the TWAIN 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
C#
using Leadtools; 
using Leadtools.Twain; 
 
 
public void DataTransferPropertyExample(IntPtr parent) 
{ 
   try 
   { 
      TwainSession session = new TwainSession(); 
      session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None); 
 
      TwainProperties props = session.Properties; 
      TwainDataTransferProperties dataTransfer = props.DataTransfer; 
 
      dataTransfer.FillOrder = TwainDataTransferFillOrder.LsbFirst; 
      dataTransfer.BufferedMemoryCompression = TwainCompressionMode.None; 
      dataTransfer.TransferMechanism = TwainTransferMechanism.Memory; 
      dataTransfer.ScanFileFormat = TwainFileFormat.Bmp; 
      dataTransfer.MemoryBufferSize = 1024; 
      dataTransfer.SaveToOneFile = true; 
      dataTransfer.AppendToFile = false; 
      dataTransfer.DumpMemoryBuffersToFile = true; 
      dataTransfer.FileName = Path.Combine(LEAD_VARS.ImagesDir, "test.bmp"); 
 
      props.DataTransfer = dataTransfer; 
      session.Properties = props; 
      session.Shutdown(); 
   } 
   catch (Exception ex) 
   { 
      MessageBox.Show(ex.Message); 
   } 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Twain Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.