Lines Matching refs:cursor
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 )
98 text.insertControlCharacter( cursor, PARAGRAPH_BREAK, 0 )
104 text.insertTextContent( cursor, textFrame, 0 )
110 text.insertControlCharacter( cursor, PARAGRAPH_BREAK, 0 )
112 cursor.setPropertyValue( "CharColor", 65536 )
113 cursor.setPropertyValue( "CharShadowed", uno.Bool(0) )
115 text.insertString( cursor, " That's all for now!" , 0 )