MF_setWriteSeparate
| MD_setWriteSeparate |
ME_setWriteSeparate |
MCF_setWriteSeparate |
MCD_setWriteSeparate |
MCE_setWriteSeparate |
|
Function | define a character string used to separate columns in the M?_write functions |
|
Syntax C/C++ | #include <MFstd.h>
void MF_setWriteSeparate( char *SepString ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::setWriteSeparate( char *SepString ); |
Pascal/Delphi | uses MFstd;
procedure MF_setWriteSeparate( SepString:PChar ); |
|
Description | These functions are identical to the functions of the VF_setNWriteSeparate family. They are used to define the character string to be inserted between the columns of a table written by MF_write. MF_setWriteSeparate does not influence the end of each line which is always a line-feed character ('\n' for C/C++ and #13 for Pascal/Delphi).
SepString may contain up to twelve characters. The default setting is a single tab character ("\t" for C/C++ and #9 for Pascal/Delphi).
|
|
Error handling | In the case of SepString longer than twelve characters, the program is aborted with the error message "Invalid Parameter(s)".
The contents of SepString is not checked. |
|
|