How can I print (for example in a label) the text into a GtkTextView?
For GtkLabel and GtkEntry there are gtk_label_get_text() and gtk_entry_get_text(), but for GtkTextView?
How can I print (for example in a label) the text into a GtkTextView?
Share
You can:
Don’t forget to
g_free (text)when no longer needed.