Sample code for 30+ languages & platforms
Tcl

Get Version of Chilkat

Demonstrate how to find out the version of Chilkat at runtime.

Chilkat Tcl Downloads

Tcl

load ./chilkat.dll

# Most Chilkat classes include a Version property.
# To find the version of Chilkat, such as "9.5.0.94",
# instantiate the object and examine the Version property.

# For example:
set sftp [new_CkSFtp]

set chilkatVersion [CkSFtp_version $sftp]
puts "$chilkatVersion"

# Most other Chilkat classes also have the Version property
# For example:
set json [new_CkJsonObject]

puts [CkJsonObject_version $json]

delete_CkSFtp $sftp
delete_CkJsonObject $json