TwainMemory.Write Method (Byte[]) |
Writes a byte array into the memory at the current
Position and advances the
position.
Namespace:
Atalasoft.Twain
Assembly:
Atalasoft.DotTwain (in Atalasoft.DotTwain.dll) Version: 11.5.0.0.0.156 (.NET 4.6.2, x86)
Syntax public void Write(
byte[] array
)
Public Sub Write (
array As Byte()
)
Parameters
- array
- Type:System.Byte[]
The byte array to write.
Exceptions Exception | Condition |
---|
| Thrown if the TwainMemory has been disposed. |
| Thrown if the Position is invalid for writing this data. |
| Thrown if the array is null (Nothing in VB). |
Remarks This method will increase the
Position by the number of bytes in array.
See Also