Lines Matching refs:cursor
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 )
107 text.insertControlCharacter( cursor, PARAGRAPH_BREAK, 0 )
114 text.insertTextContent( cursor, textFrame, 0 )
120 text.insertControlCharacter( cursor, PARAGRAPH_BREAK, 0 )
122 cursor.setPropertyValue( "CharColor", 65536 )
123 cursor.setPropertyValue( "CharShadowed", uno.Bool(0) )
125 text.insertString( cursor, " That's all for now!" , 0 )