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



1644
1645
1646
# File 'lib/imgui.rb', line 1644

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

Instance Method Details

#destroyObject



1652
1653
1654
# File 'lib/imgui.rb', line 1652

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

#emptyObject



1656
1657
1658
# File 'lib/imgui.rb', line 1656

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

#split(separator, out) ⇒ Object



1660
1661
1662
# File 'lib/imgui.rb', line 1660

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