Examples of gotoPreviousParagraph()


Examples of com.sun.star.text.XParagraphCursor.gotoPreviousParagraph()

                    mxDocCursor.gotoEnd( false );
                    // Insert a new paragraph and position the cursor in it
                    mxDocText.insertControlCharacter ( mxDocCursor, ControlCharacter.PARAGRAPH_BREAK, false );
                    XParagraphCursor xParaCursor = (XParagraphCursor)
                            UnoRuntime.queryInterface( XParagraphCursor.class, mxDocCursor );
                    xParaCursor.gotoPreviousParagraph ( false );

                    // Create a new ContentIndexMark and get it's XPropertySet interface
                    XPropertySet xEntry = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class,
                            mxDocFactory.createInstance ( "com.sun.star.text.ContentIndexMark" ) );
View Full Code Here

Examples of com.sun.star.text.XParagraphCursor.gotoPreviousParagraph()

                    // Get the Paragraph cursor
                    XParagraphCursor xParaCursor = (XParagraphCursor)
                            UnoRuntime.queryInterface( XParagraphCursor.class, mxDocCursor );

                    // Move the cursor into the new paragraph
                    xParaCursor.gotoPreviousParagraph ( false );

                    // Create a new ReferenceMark and get it's XNamed interface
                    XNamed xRefMark = (XNamed) UnoRuntime.queryInterface( XNamed.class,
                            mxDocFactory.createInstance ( "com.sun.star.text.ReferenceMark" ) );
View Full Code Here

Examples of com.sun.star.text.XParagraphCursor.gotoPreviousParagraph()

                    // Get the XParagraphCursor interface of our document cursor
                    XParagraphCursor xParaCursor = (XParagraphCursor)
                            UnoRuntime.queryInterface( XParagraphCursor.class, mxDocCursor );

                    // Position the cursor in the 2nd paragraph
                    xParaCursor.gotoPreviousParagraph ( false );

                    // Create a RectangleShape using the document factory
                    XShape xRect = (XShape) UnoRuntime.queryInterface(
                            XShape.class, mxDocFactory.createInstance (
                                    "com.sun.star.drawing.RectangleShape" ) );
View Full Code Here

Examples of com.sun.star.text.XParagraphCursor.gotoPreviousParagraph()

                    // Get the XParagraphCursor interface of the document cursor
                    XParagraphCursor xParaCursor = (XParagraphCursor)
                            UnoRuntime.queryInterface( XParagraphCursor.class, mxDocCursor );

                    // Select the first paragraph inserted
                    xParaCursor.gotoPreviousParagraph ( false );
                    xParaCursor.gotoPreviousParagraph ( true );

                    // Access the property set of the cursor selection
                    XPropertySet xCursorProps = (XPropertySet) UnoRuntime.queryInterface(
                            XPropertySet.class, mxDocCursor );
View Full Code Here

Examples of com.sun.star.text.XParagraphCursor.gotoPreviousParagraph()

                    XParagraphCursor xParaCursor = (XParagraphCursor)
                            UnoRuntime.queryInterface( XParagraphCursor.class, mxDocCursor );

                    // Select the first paragraph inserted
                    xParaCursor.gotoPreviousParagraph ( false );
                    xParaCursor.gotoPreviousParagraph ( true );

                    // Access the property set of the cursor selection
                    XPropertySet xCursorProps = (XPropertySet) UnoRuntime.queryInterface(
                            XPropertySet.class, mxDocCursor );
View Full Code Here

Examples of com.sun.star.text.XParagraphCursor.gotoPreviousParagraph()

                    // Get the XParagraphCursor interface of our text cursro
                    XParagraphCursor xParaCursor = (XParagraphCursor)
                            UnoRuntime.queryInterface( XParagraphCursor.class, mxDocCursor );
                    // Go to the end of the document, then select the preceding paragraphs
                    mxDocCursor.gotoEnd ( false );
                    xParaCursor.gotoPreviousParagraph ( false );
                    xParaCursor.gotoPreviousParagraph ( true );
                    xParaCursor.gotoPreviousParagraph ( true );

                    // Get the XPropertySet of the cursor's currently selected text
                    XPropertySet xCursorProps = (XPropertySet) UnoRuntime.queryInterface(
View Full Code Here

Examples of com.sun.star.text.XParagraphCursor.gotoPreviousParagraph()

                    XParagraphCursor xParaCursor = (XParagraphCursor)
                            UnoRuntime.queryInterface( XParagraphCursor.class, mxDocCursor );
                    // Go to the end of the document, then select the preceding paragraphs
                    mxDocCursor.gotoEnd ( false );
                    xParaCursor.gotoPreviousParagraph ( false );
                    xParaCursor.gotoPreviousParagraph ( true );
                    xParaCursor.gotoPreviousParagraph ( true );

                    // Get the XPropertySet of the cursor's currently selected text
                    XPropertySet xCursorProps = (XPropertySet) UnoRuntime.queryInterface(
                            XPropertySet.class, mxDocCursor );
View Full Code Here

Examples of com.sun.star.text.XParagraphCursor.gotoPreviousParagraph()

                            UnoRuntime.queryInterface( XParagraphCursor.class, mxDocCursor );
                    // Go to the end of the document, then select the preceding paragraphs
                    mxDocCursor.gotoEnd ( false );
                    xParaCursor.gotoPreviousParagraph ( false );
                    xParaCursor.gotoPreviousParagraph ( true );
                    xParaCursor.gotoPreviousParagraph ( true );

                    // Get the XPropertySet of the cursor's currently selected text
                    XPropertySet xCursorProps = (XPropertySet) UnoRuntime.queryInterface(
                            XPropertySet.class, mxDocCursor );
View Full Code Here

Examples of com.sun.star.text.XParagraphCursor.gotoPreviousParagraph()

                    // Access the XParagraphCursor interface of our text cursor
                    XParagraphCursor xParaCursor = (XParagraphCursor) UnoRuntime.queryInterface(
                            XParagraphCursor.class, mxDocCursor );

                    // Go back one paragraph (into Child_Section)
                    xParaCursor.gotoPreviousParagraph ( false );

                    // Insert a string into the Child_Section
                    mxDocText.insertString ( mxDocCursor, "This is a test", false );

                    // Go to the end of the document
View Full Code Here

Examples of com.sun.star.text.XParagraphCursor.gotoPreviousParagraph()

                    // Go to the end of the document
                    mxDocCursor.gotoEnd( false );

                    // Go back two paragraphs
                    xParaCursor.gotoPreviousParagraph ( false );
                    xParaCursor.gotoPreviousParagraph ( false );
                    // Go to the end of the document, selecting the two paragraphs
                    mxDocCursor.gotoEnd ( true );

                    // Create another text section and access it's XNamed interface
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.