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

  1. package lotus.domino;
  2.  
  3. public interface RichTextStyle extends Base {
  4.    int EFFECTS_NONE = 0;
  5.    int EFFECTS_SUPERSCRIPT = 1;
  6.    int EFFECTS_SUBSCRIPT = 2;
  7.    int EFFECTS_SHADOW = 3;
  8.    int EFFECTS_EMBOSS = 4;
  9.    int EFFECTS_EXTRUDE = 5;
  10.    int FONT_ROMAN = 0;
  11.    int FONT_HELV = 1;
  12.    int FONT_COURIER = 4;
  13.    int STYLE_NO_CHANGE = 255;
  14.    int YES = 1;
  15.    // $FF: renamed from: NO int
  16.    int field_0 = 0;
  17.    int MAYBE = 255;
  18.    int COLOR_BLACK = 0;
  19.    int COLOR_WHITE = 1;
  20.    int COLOR_RED = 2;
  21.    int COLOR_GREEN = 3;
  22.    int COLOR_BLUE = 4;
  23.    int COLOR_MAGENTA = 5;
  24.    int COLOR_YELLOW = 6;
  25.    int COLOR_CYAN = 7;
  26.    int COLOR_DARK_RED = 8;
  27.    int COLOR_DARK_GREEN = 9;
  28.    int COLOR_DARK_BLUE = 10;
  29.    int COLOR_DARK_MAGENTA = 11;
  30.    int COLOR_DARK_YELLOW = 12;
  31.    int COLOR_DARK_CYAN = 13;
  32.    int COLOR_GRAY = 14;
  33.    int COLOR_LIGHT_GRAY = 15;
  34.  
  35.    int getBold() throws NotesException;
  36.  
  37.    void setBold(int var1) throws NotesException;
  38.  
  39.    int getColor() throws NotesException;
  40.  
  41.    void setColor(int var1) throws NotesException;
  42.  
  43.    int getEffects() throws NotesException;
  44.  
  45.    void setEffects(int var1) throws NotesException;
  46.  
  47.    int getFont() throws NotesException;
  48.  
  49.    void setFont(int var1) throws NotesException;
  50.  
  51.    int getFontSize() throws NotesException;
  52.  
  53.    void setFontSize(int var1) throws NotesException;
  54.  
  55.    int getItalic() throws NotesException;
  56.  
  57.    void setItalic(int var1) throws NotesException;
  58.  
  59.    int getStrikeThrough() throws NotesException;
  60.  
  61.    void setStrikeThrough(int var1) throws NotesException;
  62.  
  63.    int getUnderline() throws NotesException;
  64.  
  65.    void setUnderline(int var1) throws NotesException;
  66.  
  67.    Session getParent() throws NotesException;
  68. }
  69.