klyn.gui.windows.TabWidget.isCloseableAt
method
public isCloseableAt(index as Int) as Boolean:
Description

Reports whether the tab at index may be closed.

Parameters
ParameterDescription
indexZero-based tab index.
Returns

true when the tab exists and is closeable.

Example
tabs.addTab("Welcome", Label("Ready"), false)
assert not tabs.isCloseableAt(0)