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

  1. package lotus.domino;
  2.  
  3. import java.util.Vector;
  4.  
  5. public interface RichTextParagraphStyle extends Base {
  6.    int ALIGN_LEFT = 0;
  7.    int ALIGN_RIGHT = 1;
  8.    int ALIGN_CENTER = 2;
  9.    int ALIGN_FULL = 3;
  10.    int ALIGN_NOWRAP = 4;
  11.    int SPACING_SINGLE = 0;
  12.    int SPACING_ONE_POINT_50 = 1;
  13.    int SPACING_DOUBLE = 2;
  14.    int PAGINATE_DEFAULT = 0;
  15.    int PAGINATE_BEFORE = 1;
  16.    int PAGINATE_KEEP_WITH_NEXT = 2;
  17.    int PAGINATE_KEEP_TOGETHER = 4;
  18.    int TAB_LEFT = 0;
  19.    int TAB_RIGHT = 1;
  20.    int TAB_DECIMAL = 2;
  21.    int TAB_CENTER = 3;
  22.  
  23.    int getAlignment() throws NotesException;
  24.  
  25.    void setAlignment(int var1) throws NotesException;
  26.  
  27.    int getInterLineSpacing() throws NotesException;
  28.  
  29.    void setInterLineSpacing(int var1) throws NotesException;
  30.  
  31.    int getSpacingAbove() throws NotesException;
  32.  
  33.    void setSpacingAbove(int var1) throws NotesException;
  34.  
  35.    int getSpacingBelow() throws NotesException;
  36.  
  37.    void setSpacingBelow(int var1) throws NotesException;
  38.  
  39.    int getLeftMargin() throws NotesException;
  40.  
  41.    void setLeftMargin(int var1) throws NotesException;
  42.  
  43.    int getRightMargin() throws NotesException;
  44.  
  45.    void setRightMargin(int var1) throws NotesException;
  46.  
  47.    int getFirstLineLeftMargin() throws NotesException;
  48.  
  49.    void setFirstLineLeftMargin(int var1) throws NotesException;
  50.  
  51.    int getPagination() throws NotesException;
  52.  
  53.    void setPagination(int var1) throws NotesException;
  54.  
  55.    Vector getTabs() throws NotesException;
  56.  
  57.    void setTab(int var1, int var2) throws NotesException;
  58.  
  59.    void setTabs(int var1, int var2, int var3) throws NotesException;
  60.  
  61.    void setTabs(int var1, int var2, int var3, int var4) throws NotesException;
  62.  
  63.    void clearAllTabs() throws NotesException;
  64. }
  65.