/** * <summary> * Outputs a message in the console area, and advances the console pointer accordingly. * <para> * The console pointer position is automatically moved to the beginning * of the next line when a newline character is met, or when the right margin * is hit. When the new text to display extends below the lower margin, the * console area is automatically scrolled up. * </para> * </summary> * <param name="text"> * the message to display * </param> * <returns> * <c>0</c> if the call succeeds. * </returns> * <para> * On failure, throws an exception or returns a negative error code. * </para> */ public virtual int consoleOut(string text) { return(_objptr.consoleOut(text)); }