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



2757
2758
2759
# File 'lib/imgui.rb', line 2757

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

Instance Method Details

#destroyObject



2765
2766
2767
# File 'lib/imgui.rb', line 2765

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

#emptyObject



2769
2770
2771
# File 'lib/imgui.rb', line 2769

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

#split(separator, out) ⇒ Object



2773
2774
2775
# File 'lib/imgui.rb', line 2773

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