| Ivi.Visa Namespace > IMessageBasedFormattedIO Interface : Write Method |
See Using Write Methods for detailed information.
| Overload | Description |
|---|---|
| Write(Char) | Converts the specified character to an ASCII character and appends it to the formatted I/O write buffer. |
| Write(String) | Converts the specified string to an ASCII string and appends it to the formatted I/O write buffer. |
| Write(Int64) | Converts the specified signed integer to an ASCII string and appends it to the formatted I/O write buffer. |
| Write(UInt64) | Converts the specified unsigned integer to an ASCII string and appends it to the formatted I/O write buffer. |
| Write(Double) | Converts the specified real number to an ASCII string and appends it to the formatted I/O write buffer. |
Each Write method exhibits the same behavior as the corresponding call to Printf shown in the following table:
| Write Method | Equivalent Printf Call |
|---|---|
| void Write(Char data); | Printf("%c", data); |
| void Write(String data); | Printf("%s", data); |
| void Write(Int64 data); | Printf("%@1d", data); |
| void Write(UInt64 data); | Printf("%@1u", data); |
| void Write(Double data); | Printf("%@2f", data); |
Current with Keysight IO Libraries Suite 18