[About] Version=1.0 Author=Nic Mail=support@hiasm.com [Type] Class=Element Info=Appends the specified string to the file, creating the file if it does not already exist. [Property] +Path=Sets the file to operate. ARG(string)|2| Encoding=Sets the encoding applied to the contents of the file. ARG(Encoding)|20|(empty)|Encoding [Methods] *doAppendAllLines=Appends lines to a file, and then closes the file. ARG(string path, IEnumerable contents)|1|0 *doAppendAllLines2=Appends lines to a file by using a specified encoding, and then closes the file. ARG(string path, IEnumerable contents, Encoding encoding)|1|0 *doAppendAllText=Opens a file, appends the specified string to the file, and then closes the file. If the file does not exist, this method creates a file, writes the specified string to the file, then closes the file. ARG(string path, string text)|1|0 *doAppendAllText2=Appends the specified string to the file, creating the file if it does not already exist. ARG(string path, string text, Encoding encoding)|1|0 doAppendText=Creates a StreamWriter that appends UTF-8 encoded text to an existing file. ARG(string path)|1|0 onAppendText=Occurs after invoke the method doAppendText and returns the result. ARG(StreamWriter)|2|0 onError=If an error occurs, an error message appears. ARG(string)|2|2 StreamWriter=Returns a StreamWriter object that appends UTF-8 encoded text to an existing file. ARG(StreamWriter)|3|0 *Encoding=Defines the character encoding to use. ARG(Encoding)|4|0 *Lines=Defines the string to append to the file. ARG(IEnumerable)|4|13 Path=Defines the file to operate. ARG(string)|4|2 *Text=Defines the string to append to the file. ARG(string)|4|2