[About] Version=1.0 Author=Nic Mail=support@hiasm.com [Type] Class=Element Inherit=TextWriter Interfaces=MarshalByRefObject,Object,StreamWriter Info=Implements a TextWriter for writing characters to a stream in a particular encoding. [Property] Name=Sets the name of the component. ARG(string)|2| Constructor=Sets the Constructor of the StreamWriter class. ARG(enum)|14|1|Constructor,Constructor2,Constructor3,Constructor4,Constructor5,Constructor6,Constructor7 @AutoFlush=Sets a value indicating whether the StreamWriter will flush its buffer to the underlying stream after every call to StreamWriter.Write. ARG(bool)|14|1|True,False Encoding=Sets the encoding applied to the contents of the file. ARG(Encoding)|20|(empty)|Encoding Append=Sets a value indicating whether data is to be appended to the file. If the file exists and append is false, the file is overwritten. If the file exists and append is true, the data is appended to the file. Otherwise, a new file is created. ARG(bool)|14|1|true,false BufferSize=Sets the buffer size. ARG(int)|1|0 +Path=Sets the complete file path to write to. ARG(string)|2| [Methods] *doClose=Closes the current StreamWriter object and the underlying stream. ARG()|1|0 *doDispose=Releases all resources used by the writer object. ARG()|1|0 *doFlush=Clears all buffers for the current writer and causes any buffered data to be written to the underlying device. ARG()|1|0 *doConstructor=Initializes a new instance of the StreamWriter class for the specified stream, using UTF-8 encoding and the default buffer size. ARG(Stream stream)|1|0 doConstructor2=Initializes a new instance of the StreamWriter class for the specified file on the specified path, using the default encoding and buffer size. ARG(string path)|1|0 *doConstructor3=Initializes a new instance of the StreamWriter class for the specified stream, using the specified encoding and the default buffer size. ARG(Stream stream, Encoding encoding)|1|0 *doConstructor4=Initializes a new instance of the StreamWriter class for the specified file on the specified path, using the default encoding and buffer size. If the file exists, it can be either overwritten or appended to. If the file does not exist, this constructor creates a new file. ARG(string path, bool append)|1|0 *doConstructor5=Initializes a new instance of the StreamWriter class for the specified stream, using the specified encoding and buffer size. ARG(Stream stream, Encoding encoding, int bufferSize)|1|0 *doConstructor6=Initializes a new instance of the StreamWriter class for the specified file on the specified path, using the specified encoding and default buffer size. If the file exists, it can be either overwritten or appended to. If the file does not exist, this constructor creates a new file. ARG(string path, bool append, Encoding encoding)|1|0 *doConstructor7=Initializes a new instance of the StreamWriter class for the specified file on the specified path, using the specified encoding and buffer size. If the file exists, it can be either overwritten or appended to. If the file does not exist, this constructor creates a new file. ARG(string path, bool append, Encoding encoding, int bufferSize)|1|0 *AutoFlush=Returns a value indicating whether the StreamWriter will flush its buffer to the underlying stream after every call to StreamWriter.Write. ARG(bool)|3|104 *BaseStream=Returns the underlying stream that interfaces with a backing store. ARG(Stream)|3|10 *.Encoding=Returns the Encoding in which the output is written. ARG(Encoding)|3|0 *Null=Provides a StreamWriter with no backing store that can be written to, but not read from. ARG(StreamWriter)|3|0 StreamWriter=Returns the StreamWriter object. ARG(StreamWriter)|3|0 *Append=Determines whether data is to be appended to the file. ARG(bool)|4|104 *BufferSize=Sets the buffer size. ARG(int)|4|1 *Encoding=Defines the character encoding to use. ARG(Encoding)|4|0 Path=Defines the complete file path to write to. ARG(string)|4|2 *Stream=The stream to write to. ARG(Stream)|4|10