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



2634
2635
2636
# File 'lib/imgui.rb', line 2634

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

Instance Method Details

#destroyObject



2642
2643
2644
# File 'lib/imgui.rb', line 2642

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

#emptyObject



2646
2647
2648
# File 'lib/imgui.rb', line 2646

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

#split(separator, out) ⇒ Object



2650
2651
2652
# File 'lib/imgui.rb', line 2650

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