[About] Version=1.0 Author=Nic Mail=support@hiasm.com [Type] Class=Element Info=Creates a file in the specified path. [Property] +Path=Sets the path file to operate. ARG(string)|2| BufferSize=Sets the number of bytes buffered for reads and writes to the file. ARG(int)|1|0 [Methods] *doCreate=Creates or overwrites a file in the specified path. ARG(string path)|1|0 *doCreate2=Creates or overwrites the specified file. ARG(string path, int bufferSize)|1|0 *doCreate3=Creates or overwrites the specified file, specifying a buffer size and a FileOptions value that describes how to create or overwrite the file. ARG(string path, int bufferSize, FileOptions options)|1|0 *doCreate4=Creates or overwrites the specified file with the specified buffer size, file options, and file security. ARG(string path, int bufferSize, FileOptions options, FileSecurity fileSecurity)|1|0 doCreateText=Creates or opens a file for writing UTF-8 encoded text. ARG(string path)|1|0 *onCreate=Occurs after invoke the method doCreate and returns the result. ARG(FileStream)|2|0 onCreateText=Occurs after invoke the method doCreateText and returns the result. ARG(StreamWriter)|2|0 onError=If an error occurs, an error message appears. ARG(string)|2|2 *FileStream=Returns a FileStream that provides read/write access to the file specified in path. ARG(FileStream)|3|0 StreamWriter=Returns a StreamWriter that writes to the specified file using UTF-8 encoding. ARG(StreamWriter)|3|0 Path=Defines the path file to operate. ARG(string)|4|2 *BufferSize=Defines the number of bytes buffered for reads and writes to the file. ARG(int)|4|1 *Options=Defines one of the FileOptions values that describes how to create or overwrite the file. ARG(FileOptions)|4|0 *Security=Defines one of the FileSecurity values that determines the access control and audit security for the file. ARG(FileSecurity)|4|0