Method: Notesgrip::NotesDocument#Save
- Defined in:
- lib/notesgrip/NotesDocument.rb
#Save(force = true, createResponse = false, markRead = false) ⇒ Object
394 395 396 397 398 399 400 |
# File 'lib/notesgrip/NotesDocument.rb', line 394 def Save( force=true, createResponse=false, markRead=false ) if force @raw_object.Save(force, false, markRead) else @raw_object.Save(force, createResponse, markRead) end end |