From Clomosy Docs
ClomosyAdmin (talk | contribs) No edit summary |
ClomosyAdmin (talk | contribs) No edit summary |
||
| Line 22: | Line 22: | ||
<h2> See Also </h2> | <h2> See Also </h2> | ||
* [[File_Handling | File Handling]] | * [[File_Handling | File Handling]] | ||
{{#seo:|title=Reset Usage Guide - Clomosy Docs}} | |||
{{#seo:|description=Master the Reset feature in Clomosy Docs. Enhance your app’s usability by allowing users to quickly clear inputs or restore defaults.}} | {{#seo:|description=Master the Reset feature in Clomosy Docs. Enhance your app’s usability by allowing users to quickly clear inputs or restore defaults.}} | ||
Latest revision as of 13:08, 24 December 2024
procedure Reset(var FileHandle TextFile);
It is used to open the specified file in read or write mode.
Example
var
file1: TextFile;
{
if clFileExists('dosya.txt') then
{
AssignFile(file1, 'dosya.txt');
Reset(file1);
//Reading or writing operations can be performed.
}
}