Leadtools.Wia Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
BufferValue Property
See Also 
Leadtools.Wia Namespace > WiaSession Class : BufferValue Property



Gets or sets the buffer value for a Stream type WIA .

Syntax

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

Return Value

The WIA property buffer value.

Example

For an example, refer to WiaSession.GetPropertyBuffer.

Remarks

To get the WIA property Buffer value from this property, call the GetPropertyBuffer method first to ensure this property contains valid value, and to set this property you need to provide it with your Stream buffer and then call the SetPropertyBuffer method.

Requirements

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

See Also