home *** CD-ROM | disk | FTP | other *** search
- package lotus.domino;
-
- import java.util.Vector;
-
- public interface RichTextParagraphStyle extends Base {
- int ALIGN_LEFT = 0;
- int ALIGN_RIGHT = 1;
- int ALIGN_CENTER = 2;
- int ALIGN_FULL = 3;
- int ALIGN_NOWRAP = 4;
- int SPACING_SINGLE = 0;
- int SPACING_ONE_POINT_50 = 1;
- int SPACING_DOUBLE = 2;
- int PAGINATE_DEFAULT = 0;
- int PAGINATE_BEFORE = 1;
- int PAGINATE_KEEP_WITH_NEXT = 2;
- int PAGINATE_KEEP_TOGETHER = 4;
- int TAB_LEFT = 0;
- int TAB_RIGHT = 1;
- int TAB_DECIMAL = 2;
- int TAB_CENTER = 3;
-
- int getAlignment() throws NotesException;
-
- void setAlignment(int var1) throws NotesException;
-
- int getInterLineSpacing() throws NotesException;
-
- void setInterLineSpacing(int var1) throws NotesException;
-
- int getSpacingAbove() throws NotesException;
-
- void setSpacingAbove(int var1) throws NotesException;
-
- int getSpacingBelow() throws NotesException;
-
- void setSpacingBelow(int var1) throws NotesException;
-
- int getLeftMargin() throws NotesException;
-
- void setLeftMargin(int var1) throws NotesException;
-
- int getRightMargin() throws NotesException;
-
- void setRightMargin(int var1) throws NotesException;
-
- int getFirstLineLeftMargin() throws NotesException;
-
- void setFirstLineLeftMargin(int var1) throws NotesException;
-
- int getPagination() throws NotesException;
-
- void setPagination(int var1) throws NotesException;
-
- Vector getTabs() throws NotesException;
-
- void setTab(int var1, int var2) throws NotesException;
-
- void setTabs(int var1, int var2, int var3) throws NotesException;
-
- void setTabs(int var1, int var2, int var3, int var4) throws NotesException;
-
- void clearAllTabs() throws NotesException;
- }
-