Click or drag to resize

ITextOutputService Interface

Provides methods for writing text output for the user, such as operation results, warnings, and error messages.

Namespace: Altaxo.Main.Services
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public interface ITextOutputService

The ITextOutputService type exposes the following members.

Methods
 NameDescription
Public methodWrite(String)Writes a string to the output.
Public methodWrite(String, Object) Writes text using the format string and the supplied parameters.
Public methodWrite(IFormatProvider, String, Object) Writes text using a format provider and a composite format string.
Public methodWriteLine Starts a new line.
Public methodWriteLine(String) Writes a string to the output and then starts a new line.
Public methodWriteLine(String, Object) Writes a line using the format string and the parameters, then starts a new line.
Public methodWriteLine(IFormatProvider, String, Object) Writes text using a format provider and a composite format string, then starts a new line.
Top
See Also