Exemplo n.º 1
0
 public void reload()
 {
     byte[] buf = fileManager.fileStore.LoadFile(fullpath);
     if (buf != null)
     {
         scintillaControl.ClearAll();
         //scintillaControl.AddText( buf.Length  , buf );
         scintillaControl.SetSavePoint();
         SavePointReached(scintillaControl);
     }
 }