Method: Notesgrip::NotesView#GetNextDocument

Defined in:
lib/notesgrip/NotesView.rb

#GetNextDocument(document) ⇒ Object



143
144
145
146
147
# File 'lib/notesgrip/NotesView.rb', line 143

def GetNextDocument(document)
  raw_doc = toRaw(document)
  raw_nextDoc = @raw_object.GetNextDocument(raw_doc)
  raw_nextDoc ? NotesDocument.new(raw_nextDoc) : nil
end