要檢查文本寬度,如何設置縮放模式?VB中的文本寬度6
它是 -
Debug.Print .ScaleMode = 1
或者
Me.ScaleMode = 1
哪一個工作?
我用下面的代碼測試
Private Sub Command1_Click()
Dim xStr As String
xStr = "W"
With frmLabel
.Font.Name = "Arial"
.Font.Size = 10
'Debug.Print .ScaleMode = 1
'0 to 7
Me.ScaleMode = 7
Debug.Print .TextWidth(xStr) ' TextWidth = 435
.Font.Size = 14
Debug.Print .TextWidth(xStr) ' TextWidth = 645
End With
End Sub
我怎麼能定義的那種措施或單位的?我正在尋找英寸。
謝謝。
這是http://www.virtualsplat.com/tips/visual-basic-graphics.asp? – soclose 2012-02-21 04:13:19