| Ivi.Visa Namespace > IMessageBasedFormattedIO Interface : WriteLineList Method |
| Overload | Description |
|---|---|
| WriteLineList(Byte[]) | Converts each of the bytes in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Appends a newline (0xa) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(Byte[],Int64,Int64) | Converts each of the bytes in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Copy no more than count bytes, starting from the array index specified. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(SByte[]) | Converts each of the signed bytes in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(SByte[],Int64,Int64) | Converts each of the signed bytes in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Copy no more than count bytes, starting from the array index specified. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(Int16[]) | Converts each of the Int16 integers in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(Int16[],Int64,Int64) | Converts each of the Int16 integers in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Copy no more than count Int16 integers, starting from the array index specified. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(UInt16[]) | Converts each of the UInt16 integers in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(UInt16[],Int64,Int64) | Converts each of the UInt16 integers in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Copy no more than count UInt16 integers, starting from the array index specified. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(Int32[]) | Converts each of the Int32 integers in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(Int32[],Int64,Int64) | Converts each of the Int32 integers in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Copy no more than count Int32 integers, starting from the array index specified. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(UInt32[]) | Converts each of the UInt32 integers in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(UInt32[],Int64,Int64) | Converts each of the UInt32 integers in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Copy no more than count UInt32 integers, starting from the array index specified. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(Int64[]) | Converts each of the Int64 integers in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(Int64[],Int64,Int64) | Converts each of the Int64 integers in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Copy no more than count Int64 integers, starting from the array index specified. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(UInt64[]) | Converts each of the UInt64 integers in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(UInt64[],Int64,Int64) | Converts each of the UInt64 integers in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Copy no more than count UInt64 integers, starting from the array index specified. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(Single[]) | Converts each of the singles in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(Single[],Int64,Int64) | Converts each of the singles in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Copy no more than count singles, starting from the array index specified. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(Double[]) | Converts each of the doubles in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
| WriteLineList(Double[],Int64,Int64) | Converts each of the doubles in the specified array to an ASCII string and appends them, separated by commas, to the formatted I/O write buffer. Copy no more than count doubles, starting from the array index specified. Appends a newline (0xA) to the formatted I/O write buffer, flushes the buffer, and sends an END with the buffer if required. |
Each WriteLineList method exhibits the same behavior as the corresponding call to Printf shown in the following table:
| WriteList Method | Equivalent Printf Call |
|---|---|
| void WriteLineList(Byte[] data); void WriteLineList(UInt16[] data); void WriteLineList(UInt32[] data); void WriteLineList(UInt64[] data); |
Printf("%@1,u\n", data); |
| void WriteLineList(SByte[] data); void WriteLineList(Int16[] data); void WriteLineList(Int32[] data); void WriteLineList(Int64[] data); |
Printf("%@1,d\n", data); |
| void WriteLineList(Single[] data); void WriteLineList(Double[] data); |
Printf("%@2,f\n", data); |
Current with Keysight IO Libraries Suite 18