Displays data contained within a string in the Vt window and interprets all escape sequences.
Syntax
Visual Basic (Declaration) | |
---|
Public Overloads Sub Write( _
ByVal data As String _
) |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As Vt
Dim data As String
instance.Write(data) |
Managed Extensions for C++ | |
---|
public: void Write(
string* data
) |
Parameters
- data
- The data to display.
Example
The following example demonstrates how to get information about a cell in the display.
C# | Copy Code |
---|
private void writeToDisplay(System.IO.MemoryStream stream)
{
//Read data into a byte array
stream.Position = 0;
byte[] data = new byte[stream.Length];
stream.Read(data, 0, (int)stream.Length);
//Write a byte array
vt1.Write(data);
//Write a byte array with offset and count
vt1.Write(data, 0, data.Length);
//Write a string
vt1.Write(System.Text.Encoding.Default.GetString(data, 0, data.Length));
} |
Visual Basic | Copy Code |
---|
Private Sub writeToDisplay(ByVal stream As System.IO.MemoryStream)
'Read data into a byte array
stream.Position = 0
Dim data() As Byte = New Byte(stream.Length - 1){}
stream.Read(data, 0, CInt(Fix(stream.Length)))
'Write a byte array
vt1.Write(data)
'Write a byte array with offset and count
vt1.Write(data, 0, data.Length)
'Write a string
vt1.Write(System.Text.Encoding.Default.GetString(data, 0, data.Length))
End Sub |
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also