Click or drag to resize

ITextBackedConsole Interface

Represents a storage for text that can be used like a text console.

Namespace: Altaxo.Main
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public interface ITextBackedConsole : ICloneable, 
	INotifyPropertyChanged

The ITextBackedConsole type exposes the following members.

Properties
 NameDescription
Public propertyTextGets or sets the entire text of the text backed console. If setting the text, and if the text is different from the text that is currently stored in the instance, a property changed event (see PropertyChangedEventHandler) is fired with 'Text' as parameter.
Top
Methods
 NameDescription
Public methodClearRemoves all characters from the current text backed console.
Public methodCloneCreates a new object that is a copy of the current instance.
(Inherited from ICloneable)
Public methodWrite(String)Writes the specified string value to the text backed console.
Public methodWrite(String, Object)Writes the text representation of the specified array of objects to the text backed console using the specified format information.
Public methodWriteLineWrites the current line terminator to the text backed console.
Public methodWriteLine(String)Writes the specified string value, followed by the current line terminator, to the text backed console.
Public methodWriteLine(String, Object)Writes the text representation of the specified array of objects, followed by the current line terminator, to the text backed console using the specified format information.
Top
Events
 NameDescription
Public eventPropertyChangedOccurs when a property value changes.
(Inherited from INotifyPropertyChanged)
Top
See Also