home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / SOURCE / CSSRC / SDSETFW.C < prev    next >
C/C++ Source or Header  |  1990-03-28  |  564b  |  30 lines

  1. /*
  2.     sdsetfw.c    4/12/88
  3.  
  4.     % sed_SetFieldWidth
  5.  
  6.     C-scape 3.2
  7.     Copyright (c) 1986, 1987, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.      3/28/90 jmd    ansi-fied
  13. */
  14.  
  15. #include "sed.h"
  16. #include "fldpriv.h"
  17.  
  18. void sed_SetFieldWidth(sed_type sed, int fieldno, int width)
  19. /*
  20.     Sets the width of the specified field.
  21.     Makes sure fieldpos is visible.
  22. */
  23. {
  24.     menu_SetFieldWidth(sed_GetMenu(sed), fieldno, width);
  25.  
  26.     /* call goto_char to ensure visibility of fieldpos */
  27.     sd_goto_char(sed, sed_GetRecordPos(sed));
  28. }
  29.  
  30.