Legacy Documentclose button

Important: The information in this document is obsolete and should not be used for new development.

Previous Book Contents Book Index Next

Inside Macintosh: Macintosh Toolbox Essentials /
Chapter 7 - Finder Interface / Finder Interface Reference
Data Structures


Directory Information Record

The Finder manipulates the fields in the directory information record, which is a data structure of type DInfo. Your application shouldn't have to check or set any of these fields directly.

TYPE DInfo =
      RECORD
         frRect:     Rect;    {folder's window rectangle}
         frFlags:    Integer; {flags}
         frLocation: Point;   {folder's location in window}
         frView:     Integer; {folder's view}
      END;
Field Description
frRect
The rectangle for the window that the Finder displays when the user opens the folder.
frFlags
Reserved.
frLocation
Location of the folder in the parent window.
frView
The manner in which folders are displayed; this is set by the user with commands from the View menu of the Finder.

Previous Book Contents Book Index Next

© Apple Computer, Inc.
11 JUL 1996