
- Tcl Tutorial
- Tcl - Home
- Tcl - Overview
- Tcl - Environment Setup
- Tcl - Special Variables
- Tcl - Basic Syntax
- Tcl - Commands
- Tcl - Data Types
- Tcl - Variables
- Tcl - Operators
- Tcl - Decisions
- Tcl - Loops
- Tcl - Arrays
- Tcl - Strings
- Tcl - Lists
- Tcl - Dictionary
- Tcl - Procedures
- Tcl - Packages
- Tcl - Namespaces
- Tcl - File I/O
- Tcl - Error Handling
- Tcl - Built-in Functions
- Tcl - Regular Expressions
- Tk Tutorial
- Tk - Overview
- Tk - Environment
- Tk - Special Variables
- Tk - Widgets Overview
- Tk - Basic Widgets
- Tk - Layout Widgets
- Tk - Selection Widgets
- Tk - Canvas Widgets
- Tk - Mega Widgets
- Tk - Fonts
- Tk - Images
- Tk - Events
- Tk - Windows Manager
- Tk - Geometry Manager
- Tcl/Tk Useful Resources
- Tcl/Tk - Quick Guide
- Tcl/Tk - Useful Resources
- Tcl/Tk - Discussion
Tk - Canvas Line Widget
Line widget is used to draw a line in canvas. The syntax for line widget is shown below −
canvasName create line x1 y1 x2 y2 ... xn yn options
x1 y1, x2 y2 ... xn yn are used to determine the end points of line segments.
Options
The options available for the line widget are listed below in the following table −
Sr.No. | Syntax & Description |
---|---|
1 | -arrow end Determines whether line should have arrow on ends. The end can be both, first, last and none. |
2 | -fill color The fill color fills the line segment with the color. |
3 | -smooth boolean This can be set to true make the line segments to be rendered with a set of Bezier splines. |
4 | -splinesteps number Determines the number of line segment for Bezier splines. |
A simple example for line widget is shown below −
#!/usr/bin/wish canvas .myCanvas -background red -width 100 -height 100 pack .myCanvas .myCanvas create line 10 10 50 50 30 100 -arrow both -fill yellow -smooth true -splinesteps 2
When we run the above program, we will get the following output −

tk_canvas_widgets.htm
Advertisements