| /AOO41X/main/wizards/com/sun/star/wizards/agenda/ |
| H A D | AgendaTemplate.java | 1012 XTextTableCursor cursor = xTextTable.createCursorByCellName("A1"); in write() local 1035 ai.write(cursor); in write() 1037 cellName = cursor.getRangeName(); in write() 1039 cursor.goRight((short) 1, false); in write() 1056 if (cellName.equals(cursor.getRangeName())) in write() 1064 … while ((!cellName.equals(cursor.getRangeName()) && (!cursor.getRangeName().startsWith("A")))) in write() 1066 cell = xTextTable.getCellByName(cursor.getRangeName()); in write() 1068 cellName = cursor.getRangeName(); in write() 1069 cursor.goRight((short) 1, false); in write() 1075 if (cellName.equals(cursor.getRangeName())) in write() [all …]
|
| /AOO41X/main/scripting/examples/python/pythonSamples/ |
| H A D | TableSample.py | 33 cursor = tableText.createTextCursor() 34 cursor.setPropertyValue( "CharColor", color ) 48 cursor = text.createTextCursor() 49 text.insertString( cursor, "The first line in the newly created text document.\n", 0 ) 50 text.insertString( cursor, "Now we are in the second line.\n" , 0 ) 58 text.insertTextContent( cursor, table, 0 ) 93 cursor.setPropertyValue( "CharColor", 255 ) 94 cursor.setPropertyValue( "CharShadowed", uno.Bool(1) ) 96 text.insertControlCharacter( cursor, PARAGRAPH_BREAK, 0 ) 97 text.insertString( cursor, " This is a colored text - blue with shadow\n" , 0 ) [all …]
|
| /AOO41X/main/pyuno/demo/ |
| H A D | swriter.py | 36 cursor = tableText.createTextCursor() 37 cursor.setPropertyValue( "CharColor", color ) 57 cursor = text.createTextCursor() variable 58 text.insertString( cursor, "The first line in the newly created text document.\n", 0 ) 59 text.insertString( cursor, "Now we are in the second line.\n" , 0 ) 67 text.insertTextContent( cursor, table, 0 ) 102 cursor.setPropertyValue( "CharColor", 255 ) 103 cursor.setPropertyValue( "CharShadowed", uno.Bool(1) ) 105 text.insertControlCharacter( cursor, PARAGRAPH_BREAK, 0 ) 106 text.insertString( cursor, " This is a colored text - blue with shadow\n" , 0 ) [all …]
|
| H A D | swritercomp.py | 37 cursor = tableText.createTextCursor() 38 cursor.setPropertyValue( "CharColor", color ) 59 cursor = text.createTextCursor() 60 text.insertString( cursor, "The first line in the newly created text document.\n", 0 ) 61 text.insertString( cursor, "Now we are in the second line\n" , 0 ) 69 text.insertTextContent( cursor, table, 0 ) 104 cursor.setPropertyValue( "CharColor", 255 ) 105 cursor.setPropertyValue( "CharShadowed", uno.Bool(1) ) 107 text.insertControlCharacter( cursor, PARAGRAPH_BREAK, 0 ) 108 text.insertString( cursor, " This is a colored Text - blue with shadow\n" , 0 ) [all …]
|
| /AOO41X/main/offapi/com/sun/star/text/ |
| H A D | XWordCursor.idl | 37 /** makes it possible to move a cursor word by word. 43 /** determines if the cursor is positioned at the start of a word. 49 /** determines if the cursor is positioned at the end of a word. 55 /** moves the cursor to the next word. 58 that the cursor is located at the next word, or any word at all! 62 <true/> if the cursor was moved. It returns <false/> it the 63 cursor can not advance further. 69 /** moves the cursor to the previous word. 72 that the cursor is located at the previous word, or any word at all! 76 <true/> if the cursor was moved. It returns <false/> it the [all …]
|
| H A D | XSentenceCursor.idl | 37 /** makes it possible to perform cursor movements through sentences. 43 /** determines if the cursor is positioned at the start of a sentence. 49 /** determines if the cursor is positioned at the end of a sentence. 55 /** moves the cursor to the start of the next sentence. 58 <true/> if the cursor was moved. It returns <false/> it the 59 cursor can not advance further. 65 /** moves the cursor to the start of the previous sentence. 68 <true/> if the cursor was moved. It returns <false/> it the 69 cursor can not advance further. 75 /** moves the cursor to the start of the current sentence. [all …]
|
| H A D | XParagraphCursor.idl | 43 /** determines if the cursor is positioned at the start of a paragraph. 49 /** determines if the cursor is positioned at the end of a paragraph. 55 /** moves the cursor to the start of the current paragraph. 58 <true/> if the cursor is now at the start of a paragraph, 59 <false/> otherwise. If <false/> was returned the cursor 66 /** moves the cursor to the end of the current paragraph. 69 <true/> if the cursor is now at the end of a paragraph, 70 <false/> otherwise. If <false/> was returned the cursor 77 /** moves the cursor to the next paragraph. 80 <true/> if the cursor was moved. It returns <false/> it the [all …]
|
| H A D | XPageCursor.idl | 38 /** makes it possible to perform cursor movements between pages. 45 /** moves the cursor to the first page. 52 /** moves the cursor to the last page. 59 /** moves the cursor to the specified page. 67 the number of the page within the document of this cursor. 74 /** moves the cursor to the next page. 83 /** moves the cursor to the previous page. 92 /** moves the cursor to the end of the current page. 101 /** moves the cursor to the start of the current page.
|
| H A D | XTextCursor.idl | 61 /** moves the cursor the specified number of characters to the left. 67 specifies if the current selection of the cursor should 77 be returned and the cursor moves only those 3 characters.<p> 84 /** moves the cursor the specified number of characters to the right. 90 specifies if the current selection of the cursor should 100 be returned and the cursor moves only those 3 characters.<p> 107 /** moves the cursor to the start of the text. 113 /** moves the cursor to the end of the text. 119 /** moves or expands the cursor to a specified <type>TextRange</type>.
|
| H A D | XTextTableCursor.idl | 49 the name of the cell range that is selected by this cursor. 60 /** moves the cursor to the cell with the specified name. 75 /** moves the cursor to the left neighbor. 88 /** moves the cursor to the right neighbor. 101 /** moves the cursor to the top neighbor. 114 /** moves the cursor to the bottom neighbor cell. 127 /** moves the cursor to the top left cell of the table. 136 /** moves the cursor to the bottom right cell of the table.
|
| /AOO41X/main/offapi/com/sun/star/sdbc/ |
| H A D | XResultSet.idl | 47 A ResultSet maintains a cursor pointing to its current row of 48 data. Initially the cursor is positioned before the first row. 49 The 'next' method moves the cursor to the next row. 56 /** moves the cursor down one row from its current position. 60 A ResultSet cursor is initially positioned before the first row; the 78 /** indicates whether the cursor is before the first row in the result 88 /** indicates whether the cursor is after the last row in the result 98 /** indicates whether the cursor is on the first row of the result set. 107 /** indicates whether the cursor is on the last row of the result set. 127 /** moves the cursor to the front of the result set, just before the [all …]
|
| H A D | XResultSetUpdate.idl | 87 /** moves the cursor to the insert row. The current cursor position is 88 remembered while the cursor is positioned on the insert row. 108 called when the cursor is on the insert row. All of the columns in 124 /** moves the cursor to the remembered cursor position, usually the 125 current row. This method has no effect if the cursor is not on the insert
|
| /AOO41X/main/offapi/com/sun/star/sheet/ |
| H A D | XSheetCellCursor.idl | 37 /** provides advanced methods to control the position of a cursor in a 46 /** expands the cursor into the region containing the cells to which 55 /** collapses the cursor into the range of the array formula to which 59 cursor must point to any cell containing an array formula. 60 If not, the cursor is left unchanged.</p> 66 /** expands the cursor to merged cell ranges. 68 <p>Expands the current cursor range in a way so that all merged 70 If the cursor does not point to any range with merged cells, it 77 /** expands the cursor to include the entire columns of the cells 84 /** expands the cursor to include the entire rows of the cells to [all …]
|
| H A D | XUsedAreaCursor.idl | 49 /** points the cursor to the start of the used area. 52 <TRUE/> = expands the current cursor range, 53 <FALSE/> = sets size of the cursor to a single cell. 59 /** points the cursor to the end of the used area. 62 <TRUE/> = expands the current cursor range, 63 <FALSE/> = sets size of the cursor to a single cell.
|
| /AOO41X/main/offapi/com/sun/star/view/ |
| H A D | XViewCursor.idl | 37 /** makes it possible to move a cursor up/down/left/right within laid out text. 46 /** moves the cursor the specified number of lines down. 52 determines whether the text range of the cursor is expanded (<TRUE/>) 53 or the cursor will be just at the new position after the move (<FALSE/>). 56 <TRUE/> if the cursor was moved, 62 /** moves the cursor the specified number of lines up. 68 determines whether the text range of the cursor is expanded (<TRUE/>) 71 <TRUE/> if the cursor was moved, 77 /** moves the cursor the specified number of characters to the left. 83 determines whether the text range of the cursor is expanded (<TRUE/>) [all …]
|
| H A D | XLineCursor.idl | 37 /** makes it possible to move a cursor by lines within laid out text. 46 /** determines if the cursor is positioned at the start of a line. 51 /** determines if the cursor is positioned at the end of a line. 56 /** moves the cursor to the end of the current line. 59 determines whether the text range of the cursor is expanded (<TRUE/>) 60 or the cursor will be just at the new position after the move (<FALSE/>). 65 /** moves the cursor to the start of the current line. 68 determines whether the text range of the cursor is expanded (<TRUE/>) 69 or the cursor will be just at the new position after the move (<FALSE/>).
|
| /AOO41X/main/javaunohelper/com/sun/star/lib/uno/helper/ |
| H A D | InterfaceContainer.java | 732 int cursor= 0; field in InterfaceContainer.Itr 753 return cursor !=dataIt.size(); in hasNext() 760 Object next = dataIt.get(cursor); in next() 761 lastRet = cursor++; in next() 785 if (lastRet < cursor) in remove() 786 cursor--; in remove() 798 cursor= _index; in LstItr() 808 dataIt.add(cursor++, o); in add() 815 return cursor != 0; in hasPrevious() 820 return cursor; in nextIndex() [all …]
|
| /AOO41X/main/qadevOOo/tests/java/mod/_svx/ |
| H A D | SvxUnoTextCursor.java | 113 XTextCursor cursor = text.createTextCursor() ; in createTestEnvironment() local 115 text.insertString(cursor, "Paragraph 1", false) ; in createTestEnvironment() 116 text.insertControlCharacter(cursor, in createTestEnvironment() 118 text.insertString(cursor, "Paragraph 2", false) ; in createTestEnvironment() 119 text.insertControlCharacter(cursor, in createTestEnvironment() 121 text.insertString(cursor, "Paragraph 3", false) ; in createTestEnvironment() 122 text.insertControlCharacter(cursor, in createTestEnvironment() 125 oObj = cursor ; in createTestEnvironment()
|
| H A D | SvxUnoTextContentEnum.java | 116 XTextCursor cursor = text.createTextCursor() ; in createTestEnvironment() local 118 text.insertString(cursor, "Paragraph 1", false) ; in createTestEnvironment() 119 text.insertControlCharacter(cursor, in createTestEnvironment() 121 text.insertString(cursor, "Paragraph 2", false) ; in createTestEnvironment() 122 text.insertControlCharacter(cursor, in createTestEnvironment() 124 text.insertString(cursor, "Paragraph 3", false) ; in createTestEnvironment() 125 text.insertControlCharacter(cursor, in createTestEnvironment()
|
| H A D | SvxUnoTextContent.java | 116 XTextCursor cursor = text.createTextCursor() ; in createTestEnvironment() local 118 text.insertString(cursor, "Paragraph 1", false) ; in createTestEnvironment() 119 text.insertControlCharacter(cursor, in createTestEnvironment() 121 text.insertString(cursor, "Paragraph 2", false) ; in createTestEnvironment() 122 text.insertControlCharacter(cursor, in createTestEnvironment() 124 text.insertString(cursor, "Paragraph 3", false) ; in createTestEnvironment() 125 text.insertControlCharacter(cursor, in createTestEnvironment()
|
| H A D | SvxUnoTextRangeEnumeration.java | 116 XTextCursor cursor = text.createTextCursor() ; in createTestEnvironment() local 118 text.insertString(cursor, "Paragraph 1", false) ; in createTestEnvironment() 119 text.insertControlCharacter(cursor, in createTestEnvironment() 121 text.insertString(cursor, "Paragraph 2", false) ; in createTestEnvironment() 122 text.insertControlCharacter(cursor, in createTestEnvironment() 124 text.insertString(cursor, "Paragraph 3", false) ; in createTestEnvironment() 125 text.insertControlCharacter(cursor, in createTestEnvironment()
|
| H A D | SvxUnoTextRange.java | 116 XTextCursor cursor = text.createTextCursor() ; in createTestEnvironment() local 118 text.insertString(cursor, "Paragraph 1", false) ; in createTestEnvironment() 119 text.insertControlCharacter(cursor, in createTestEnvironment() 121 text.insertString(cursor, "Paragraph 2", false) ; in createTestEnvironment() 122 text.insertControlCharacter(cursor, in createTestEnvironment() 124 text.insertString(cursor, "Paragraph 3", false) ; in createTestEnvironment() 125 text.insertControlCharacter(cursor, in createTestEnvironment()
|
| /AOO41X/main/offapi/com/sun/star/table/ |
| H A D | XCellCursor.idl | 37 /** provides methods to control the position of a cell cursor. 45 /** points the cursor to a single cell which is the beginning of a 52 /** points the cursor to a single cell which is the end of a contiguous 59 /** points the cursor to the next unprotected cell. 68 /** points the cursor to the previous unprotected cell. 77 /** moves the origin of the cursor relative to the current position. 81 cursor to the left. 85 cursor to the top.
|
| /AOO41X/main/offapi/com/sun/star/ucb/ |
| H A D | ContentResultSet.idl | 92 This interface mainly provides a cursor for the result set. 105 /** provides access to data of the content the cursor is pointing to. 139 /** controls the travel mode of the resultset cursor. 154 cursor: 160 cursor.setPropertyValue( "CursorTravelMode", BLOCKING ) 162 cursor.travelSomeWhere() 165 cursor.setPropertyValue( "CursorTravelMode", NONBLOCKING ) 172 cursor.travelSomeWhere() 190 a blocking cursor.
|
| /AOO41X/main/offapi/com/sun/star/datatransfer/dnd/ |
| H A D | XDragSourceContext.idl | 57 /** Get the identifier of the currently used cursor. 60 The currently selected drag cursor. 66 /** This method sets the current drag cursor. 68 <p>This method should only be called to set another cursor than the 70 <p>Invalid cursor identifiers will be ignored.</p> 73 The identifier the drag source returned when registering the cursor.
|