Save() public method

Saves the text to the stream.
This method sets IsModified to false.
public Save ( System.Stream stream ) : void
stream System.Stream
return void
Exemplo n.º 1
0
 private void SaveTextEditorBuffer(TextEditor te)
 {
     LayerInfo layer = te.DataContext as LayerInfo;
     te.Save(layer.File.Value);
     
     _invalidated.Remove(te);
 }
Exemplo n.º 2
0
 public void Save(Stream stream)
 {
     _editor.Save(stream);
 }