Description
Returns the width for the specified character in the current font.
Syntax
object.CharWidth (i) |
object
Required. Object name. Returned by Ted.GetFont.
i
Required. Asc value of the character.
Example
This script displays 722 as width of the character "A" in the font numbered as 10031:
Dim objFont = Ted.GetFont
objFont.Code = 10031
dim c as String = "A"
msgbox (c & ": " & objFont.CharWidth(asc(c)))
Context
Font object