- Tcl - Regular Expressions
- Tcl - Built-in Functions
- Tcl - Error Handling
- Tcl - File I/O
- Tcl - Namespaces
- Tcl - Packages
- Tcl - Procedures
- Tcl - Dictionary
- Tcl - Lists
- Tcl - Strings
- Tcl - Arrays
- Tcl - Loops
- Tcl - Decisions
- Tcl - Operators
- Tcl - Variables
- Tcl - Data Types
- Tcl - Commands
- Tcl - Basic Syntax
- Tcl - Special Variables
- Tcl - Environment Setup
- Tcl - Overview
- Tcl - Home
Tk Tutorial
- Tk - Geometry Manager
- Tk - Windows Manager
- Tk - Events
- Tk - Images
- Tk - Fonts
- Tk - Mega Widgets
- Tk - Canvas Widgets
- Tk - Selection Widgets
- Tk - Layout Widgets
- Tk - Basic Widgets
- Tk - Widgets Overview
- Tk - Special Variables
- Tk - Environment
- Tk - Overview
Tcl/Tk Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Tk - Special Variables
In Tk, we classify some of the variables as special variables and they have a predefined usage/functionapty. The pst of special variables is psted below.
Sr.No. | Special Variable & Description |
---|---|
1 | tk_pbrary Used for setting the location of standard Tk pbraries. |
2 | tk_patchLevel Refers to the current patch level of the Tk interpreter. |
3 | tk_strictMotif When non-zero, Tk tries to adhere to Motif look-and-feel as closely as possible. |
4 | tk_version Displays the Tk version. |
The above special variables have their special meanings for the Tk interpreter.
Examples for using Tk special variables
Lets see the examples for special variables.
TK VERSION
#!/usr/bin/wish puts $tk_version
When you run the program, you will get a similar output as shown below.
8.5
TK LIBRARY PATH
#!/usr/bin/wish puts $tk_pbrary
When you run the program, you will get a similar output as shown below.
/Library/Frameworks/Tk.framework/Versions/8.6/Resources/Scripts
TK PATCH LEVEL
#!/usr/bin/wish puts $tk_patchLevel
When you run the program, you will get a similar output as shown below.
8.6.1
TK STRICTMOTIF
#!/usr/bin/wish puts $tk_strictMotif
When you run the program, you will get a similar output as shown below.
0Advertisements