WriteLine
Output the string adding return and newline characters automatically.
void WriteLine( int iDestination )
None.
EX1
void string_WriteLine_ex1() { string str="Hello World"; str.Write(WRITE_SCRIPT_WINDOW); //Hello World typed out to script window, cursor is at this line str.WriteLine(WRITE_SCRIPT_WINDOW); //Hello World typed out to script window , cursor is at next line str.WriteLine(WRITE_OUTPUT_LOG); //Hello World typed out to the Results Log, cursor is at next line str.WriteLine(WRITE_STATUS_BAR); //Hello World typed out to status bar, cursor is at next line str.WriteLine(WRITE_MESSAGE_BOX); //Hello World typed out to Message box, cursor is at next line str.WriteLine(WRITE_COMPILER_OUTPUT); //Hello World typed out to compiler output, cursor is at next line }
This member function outputs the string adding return and newline characters automatically.
string::Write
origin.h