Class: ImGuiTextRange
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- ImGuiTextRange
- Defined in:
- lib/imgui.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.create(_b, _e) ⇒ Object
2751 2752 2753 |
# File 'lib/imgui.rb', line 2751 def self.create() return ImGuiTextRange.new(ImGui::ImGuiTextRange_ImGuiTextRange_Nil()) end |
Instance Method Details
#destroy ⇒ Object
2759 2760 2761 |
# File 'lib/imgui.rb', line 2759 def destroy() ImGui::ImGuiTextRange_destroy(self) end |
#empty ⇒ Object
2763 2764 2765 |
# File 'lib/imgui.rb', line 2763 def empty() ImGui::ImGuiTextRange_empty(self) end |
#split(separator, out) ⇒ Object
2767 2768 2769 |
# File 'lib/imgui.rb', line 2767 def split(separator, out) ImGui::ImGuiTextRange_split(self, separator, out) end |