ش | ی | د | س | چ | پ | ج |
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
تسهیل دسترسی متوالی به فایل
Methods of the TextStream Object
Property | Description |
Close | Closes an open TextStream file. |
Read | Reads a specified number of characters from a TextStream file and returns the resulting string. |
ReadAll | Reads an entire TextStream file and returns the resulting string. |
ReadLine | Reads an entire line (up to, but not including, the newline character) from a TextStream file and returns the resulting string. |
Skip | Skips a specified number of characters when reading a TextStream file. |
SkipLine | Skips the next line when reading a TextStream file. |
Write | Writes a specified string to a TextStream file. |
WriteLine | Writes a specified string and newline character to a TextStream file. |
WriteBlankLines | Writes a specified number of newline characters to a TextStream file. |
Properties of the TextStream Object
Property | Description |
AtEndOfLine | A Boolean indicating whether or not the file pointer is at the end of a line in the text file (used when reading character by character). |
AtEndOfStream | A Boolean indicating whether or not the file pointer is at the end of file (used when reading line by line). |
Column | The column number of the current character position in a TextStream file. |
Line | The current line number in a TextStream file. |