home *** CD-ROM | disk | FTP | other *** search
- package lotus.domino;
-
- public interface RichTextStyle extends Base {
- int EFFECTS_NONE = 0;
- int EFFECTS_SUPERSCRIPT = 1;
- int EFFECTS_SUBSCRIPT = 2;
- int EFFECTS_SHADOW = 3;
- int EFFECTS_EMBOSS = 4;
- int EFFECTS_EXTRUDE = 5;
- int FONT_ROMAN = 0;
- int FONT_HELV = 1;
- int FONT_COURIER = 4;
- int STYLE_NO_CHANGE = 255;
- int YES = 1;
- // $FF: renamed from: NO int
- int field_0 = 0;
- int MAYBE = 255;
- int COLOR_BLACK = 0;
- int COLOR_WHITE = 1;
- int COLOR_RED = 2;
- int COLOR_GREEN = 3;
- int COLOR_BLUE = 4;
- int COLOR_MAGENTA = 5;
- int COLOR_YELLOW = 6;
- int COLOR_CYAN = 7;
- int COLOR_DARK_RED = 8;
- int COLOR_DARK_GREEN = 9;
- int COLOR_DARK_BLUE = 10;
- int COLOR_DARK_MAGENTA = 11;
- int COLOR_DARK_YELLOW = 12;
- int COLOR_DARK_CYAN = 13;
- int COLOR_GRAY = 14;
- int COLOR_LIGHT_GRAY = 15;
-
- int getBold() throws NotesException;
-
- void setBold(int var1) throws NotesException;
-
- int getColor() throws NotesException;
-
- void setColor(int var1) throws NotesException;
-
- int getEffects() throws NotesException;
-
- void setEffects(int var1) throws NotesException;
-
- int getFont() throws NotesException;
-
- void setFont(int var1) throws NotesException;
-
- int getFontSize() throws NotesException;
-
- void setFontSize(int var1) throws NotesException;
-
- int getItalic() throws NotesException;
-
- void setItalic(int var1) throws NotesException;
-
- int getStrikeThrough() throws NotesException;
-
- void setStrikeThrough(int var1) throws NotesException;
-
- int getUnderline() throws NotesException;
-
- void setUnderline(int var1) throws NotesException;
-
- Session getParent() throws NotesException;
- }
-