home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / Notes.jar / lotus / domino / ViewColumn.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-15  |  2.7 KB  |  118 lines

  1. package lotus.domino;
  2.  
  3. public interface ViewColumn extends Base {
  4.    int ALIGN_LEFT = 0;
  5.    int ALIGN_RIGHT = 1;
  6.    int ALIGN_CENTER = 2;
  7.    int SEP_SPACE = 1;
  8.    int SEP_COMMA = 2;
  9.    int SEP_SEMICOLON = 3;
  10.    int SEP_NEWLINE = 4;
  11.    int SEP_BLANKLINE = 5;
  12.    int FMT_GENERAL = 0;
  13.    int FMT_FIXED = 1;
  14.    int FMT_SCIENTIFIC = 2;
  15.    int FMT_CURRENCY = 3;
  16.    int ATTR_PUNCTUATED = 1;
  17.    int ATTR_PARENS = 2;
  18.    int ATTR_PERCENT = 4;
  19.    int FMT_YMD = 0;
  20.    int FMT_PARTIAL = 1;
  21.    int FMT_MD = 2;
  22.    int FMT_YM = 3;
  23.    int FMT_Y4MD = 4;
  24.    int FMT_PARTIAL4 = 5;
  25.    int FMT_Y4M = 6;
  26.    int FMT_HMS = 0;
  27.    int FMT_HM = 1;
  28.    int FMT_H = 2;
  29.    int FMT_NEVER = 0;
  30.    int FMT_SOMETIMES = 1;
  31.    int FMT_ALWAYS = 2;
  32.    int FMT_DATE = 0;
  33.    int FMT_TIME = 1;
  34.    int FMT_DATETIME = 2;
  35.    int FMT_TODAYTIME = 3;
  36.    int FMT_TODAY = 4;
  37.    int FONT_BOLD = 1;
  38.    int FONT_ITALIC = 2;
  39.    int FONT_UNDERLINE = 4;
  40.    int FONT_STRIKEOUT = 8;
  41.  
  42.    boolean isField() throws NotesException;
  43.  
  44.    boolean isFormula() throws NotesException;
  45.  
  46.    String getTitle() throws NotesException;
  47.  
  48.    String getItemName() throws NotesException;
  49.  
  50.    int getPosition() throws NotesException;
  51.  
  52.    String getFormula() throws NotesException;
  53.  
  54.    int getWidth() throws NotesException;
  55.  
  56.    int getListSep() throws NotesException;
  57.  
  58.    int getAlignment() throws NotesException;
  59.  
  60.    int getHeaderAlignment() throws NotesException;
  61.  
  62.    String getFontFace() throws NotesException;
  63.  
  64.    int getFontStyle() throws NotesException;
  65.  
  66.    int getFontColor() throws NotesException;
  67.  
  68.    int getFontPointSize() throws NotesException;
  69.  
  70.    int getNumberDigits() throws NotesException;
  71.  
  72.    int getNumberFormat() throws NotesException;
  73.  
  74.    int getNumberAttrib() throws NotesException;
  75.  
  76.    int getDateFmt() throws NotesException;
  77.  
  78.    int getTimeFmt() throws NotesException;
  79.  
  80.    int getTimeZoneFmt() throws NotesException;
  81.  
  82.    int getTimeDateFmt() throws NotesException;
  83.  
  84.    View getParent() throws NotesException;
  85.  
  86.    boolean isSorted() throws NotesException;
  87.  
  88.    boolean isCategory() throws NotesException;
  89.  
  90.    boolean isHidden() throws NotesException;
  91.  
  92.    boolean isResponse() throws NotesException;
  93.  
  94.    boolean isSortDescending() throws NotesException;
  95.  
  96.    boolean isHideDetail() throws NotesException;
  97.  
  98.    boolean isIcon() throws NotesException;
  99.  
  100.    boolean isResize() throws NotesException;
  101.  
  102.    boolean isResortAscending() throws NotesException;
  103.  
  104.    boolean isResortDescending() throws NotesException;
  105.  
  106.    boolean isShowTwistie() throws NotesException;
  107.  
  108.    boolean isResortToView() throws NotesException;
  109.  
  110.    boolean isSecondaryResort() throws NotesException;
  111.  
  112.    boolean isSecondaryResortDescending() throws NotesException;
  113.  
  114.    boolean isCaseSensitiveSort() throws NotesException;
  115.  
  116.    boolean isAccentSensitiveSort() throws NotesException;
  117. }
  118.