home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 25.4. Remove all column footings from a browse object.
- Author: Craig Yellick
- Excerpted from "Clipper 5: A Developer's Guide"
- Copyright (c) 1991 M&T Books
- 501 Galveston Drive
- Redwood City, CA 94063-4728
- (415) 366-3600
- */
-
- function NoFeet(objBrow)
- /*
- Remove all column footings in a browse object.
- */
- local i
- for i := 1 to objBrow:colCount
- objBrow:getColumn(i):footing := nil
- next i
- return nil
-
- // end of file CHP2504.PRG
-