VtSeparator object_name [options]
Creates a Separator widget (a horizontal or vertical line). This is typically used to separate other widgets. Returns the widget name.
The following code produces a Separator. Two Labels are provided to highlight the Separator.
set app [VtOpen scale] set form [VtFormDialog $app.form -title "VtScale Demo" ] VtLabel $form.aboveLabel -label "Above the separator" VtSeparator $form.scale -leftSide FORM -rightSide FORM VtLabel $form.belowLabel -label "Below the separator" VtShow $form VtMainLoop
This code produces the following:
See also: