| Ivi.Visa Namespace > IMessageBasedFormattedIO Interface : WriteList Method |
| Overload | Description |
|---|---|
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
| WriteList(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. |
Each WriteList method exhibits the same behavior as the corresponding call to Printf shown in the following table:
| WriteList Method | Equivalent Printf Call |
|---|---|
| void WriteList(Byte[] data); void WriteList(UInt16[] data); void WriteList(UInt32[] data); void WriteList(UInt64[] data); |
Printf("%@1,u", data); |
| void WriteList(SByte[] data); void WriteList(Int16[] data); void WriteList(Int32[] data); void WriteList(Int64[] data); |
Printf("%@1,d", data); |
| void WriteList(Single[] data); void WriteList(Double[] data); |
Printf("%@2,f", data); |
Current with Keysight IO Libraries Suite 18