RC-WinTrans Object Model Help |
StringWidthDialog.Show
|
Makes the dialog visible. Returns "True" if the dialog has been closed with the OK button, otherwise "False."
Syntax: |
Show() As Boolean |
| Return: | Boolean |
| Example: | Dim Dlg As StringWidthDialog
Set Dlg = Application.Tools.RestypeEditors.StringWidthDialog
Call Dlg.SetSourceText("Source")
Call Dlg.SetTargetText("Target")
Dlg.Width = -1
Dlg.EnableWidthChecking = False
If (Dlg.Show) Then
MsgBox "Changed Width"
End If
|
See also: