ScreenUPG Assembly > ScreenUPG Namespace > ScreenUPG Class > RawDataTransmitBytes Method : RawDataTransmitBytes(SByte[]) Method |
Depending on the type of terminal and type of host connection, this data may have to be in the 8-bit ASCII, 8-bit EBCDIC or 6-bit ALC character set.
In the case of ALC, you must have two leading placeholder characters and one trailing placeholder character in your buffer (i.e. nn mm "real data" zz).
'Declaration
Public Overloads Function RawDataTransmitBytes( _ ByVal inStream() As SByte _ ) As Integer
'Usage
Dim instance As ScreenUPG Dim inStream() As SByte Dim value As Integer value = instance.RawDataTransmitBytes(inStream)
public: int RawDataTransmitBytes( array<sbyte>^ inStream )
sbyte[] rdtb = new sbyte[4] {'t', 'e', 'x', 't'}; // Send an array of signed bytes to host through screen object bypassing presentation space. m_screen.RawDataTransmitBytes rdtb
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2