20160aa0fd
* sources/Gdk.metadata (Drawable.GetSize): Add out param. * gtk/TextBuffer.custom (Clear): Add a new Clear method. svn path=/trunk/gtk-sharp/; revision=10187
14 lines
204 B
Text
14 lines
204 B
Text
public string Text {
|
|
get {
|
|
return GetText (StartIter, EndIter, false);
|
|
}
|
|
|
|
set {
|
|
gtk_text_buffer_set_text (Handle, value, value.Length);
|
|
}
|
|
}
|
|
|
|
public void Clear ()
|
|
{
|
|
Delete (StartIter, EndIter);
|
|
}
|