Evas textblock: Updated format_prepend/append docs.

SVN revision: 58031
This commit is contained in:
Tom Hacohen 2011-03-23 11:43:52 +00:00
parent a4ff4f7fa3
commit 301d5da589
1 changed files with 6 additions and 0 deletions

View File

@ -6526,6 +6526,9 @@ _evas_textblock_cursor_is_at_the_end(const Evas_Textblock_Cursor *cur)
* This behavior is because visible formats are like characters and invisible
* should be stacked in a way that the last one is added last.
*
* This function works with native formats, that means that style defined
* tags like <br> won't work here. For those kind of things use markup prepend.
*
* @param cur the cursor to where to add format at.
* @param format the format to add.
* @return Returns true if a visible format was added, false otherwise.
@ -6656,6 +6659,9 @@ evas_textblock_cursor_format_append(Evas_Textblock_Cursor *cur, const char *form
* should be stacked in a way that the last one is added last.
* If the format is visible the cursor is advanced after it.
*
* This function works with native formats, that means that style defined
* tags like <br> won't work here. For those kind of things use markup prepend.
*
* @param cur the cursor to where to add format at.
* @param format the format to add.
* @return Returns true if a visible format was added, false otherwise.