Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
CFile::SeekToBegin
CFile                                       Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  void SeekToBegin()
  throw( CFileException );
 
  Remarks
 
  Sets the value of the file pointer to the beginning of the file.
  SeekToBegin() is equivalent to Seek(0L, CFile::begin).
 
  Example
 
  extern CFile cfile;
  cfile.SeekToBegin();
 
 
 
                                     -♦-