ImGuiWindow:Separator Synchronous

Insert a visual separator between groups of controls. Use it to make groups of related controls easier to scan. It only adds a divider; it does not create a collapsible group.

Syntax
Luau
ImGuiWindow:Separator() -> ImGuiWindow

Parameters

Call this method with a ImGuiWindow receiver. The colon supplies self implicitly; a dot call must pass the receiver explicitly.

This function takes no arguments.

Returns

ImGuiWindow

The same ImGuiWindow, allowing another window method to be chained.

Example

Example
Luau
local window = imgui.create("Example controls")
window:Text("Appearance")
window:Separator()
window:Text("Import and export")
Kawaii documentation