Method: Notesgrip::NotesView#GetNextSibling

Defined in:
lib/notesgrip/NotesView.rb

#GetNextSibling(document) ⇒ Object



149
150
151
152
153
# File 'lib/notesgrip/NotesView.rb', line 149

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