Lines Matching refs:cursor
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 )
109 text.insertControlCharacter( cursor, PARAGRAPH_BREAK, 0 )
115 text.insertTextContent( cursor, textFrame, 0 )
121 text.insertControlCharacter( cursor, PARAGRAPH_BREAK, 0 )
123 cursor.setPropertyValue( "CharColor", 65536 )
124 cursor.setPropertyValue( "CharShadowed", uno.Bool(0) )
126 text.insertString( cursor, " That's all for now !!" , 0 )