Class: ImGuiTextRange

Inherits:
FFI::Struct
  • Object
show all
Defined in:
lib/imgui.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.create(_b, _e) ⇒ Object



2388
2389
2390
# File 'lib/imgui.rb', line 2388

def self.create()
  return ImGuiTextRange.new(ImGui::ImGuiTextRange_ImGuiTextRange_Nil())
end

Instance Method Details

#destroyObject



2396
2397
2398
# File 'lib/imgui.rb', line 2396

def destroy()
  ImGui::ImGuiTextRange_destroy(self)
end

#emptyObject



2400
2401
2402
# File 'lib/imgui.rb', line 2400

def empty()
  ImGui::ImGuiTextRange_empty(self)
end

#split(separator, out) ⇒ Object



2404
2405
2406
# File 'lib/imgui.rb', line 2404

def split(separator, out)
  ImGui::ImGuiTextRange_split(self, separator, out)
end