5646397d75
* gtk/TextBuffer.custom (Text): Add a new Text property. svn path=/trunk/gtk-sharp/; revision=9262
9 lines
148 B
Text
9 lines
148 B
Text
public string Text {
|
|
get {
|
|
return GetText (StartIter, EndIter, false);
|
|
}
|
|
|
|
set {
|
|
gtk_text_buffer_set_text (Handle, value, value.Length);
|
|
}
|
|
}
|