diff --git a/doc/en/Gtk/TextBuffer.xml b/doc/en/Gtk/TextBuffer.xml index a0dc53170..ecf20069a 100644 --- a/doc/en/Gtk/TextBuffer.xml +++ b/doc/en/Gtk/TextBuffer.xml @@ -694,10 +694,19 @@ the name of the mark the new location for mark + It is possible to use built-in marks to implement a "Select All" method on a buffer (e.g. ). - see - for more details. + + + private void SelectAll (TextBuffer buffer) + { + buffer.MoveMark ("insert", buffer.StartIter); + buffer.MoveMark ("selection_bound", buffer.EndIter); + } + + + See for more details.