Display a web view dialog. Provide empty button name to have the button invisible.
PROCEDURE ShowWebDlg(
title : STRING;
url : STRING;
buttonText : STRING;
contextualHelpID : STRING);def vs.ShowWebDlg(title, url, buttonText, contextualHelpID):
return None| Name | Type | Description |
|---|---|---|
| title | STRING | |
| url | STRING | |
| buttonText | STRING | |
| contextualHelpID | STRING |
VectorScript:
ShowWebDlg('Title', 'www.gooogle.com', 'Close', '');Python:
vs.ShowWebDlg('Title', 'www.gooogle.com', 'Close', '')ShowWebDlg('Example', 'Example', 'Example', 'Example');import vs
# Display a web view dialog.
title = 'Example'
url = 'C:/Temp/example.txt'
buttonText = 'Example text'
contextualHelpID = 'Example'
vs.ShowWebDlg(title, url, buttonText, contextualHelpID)Availability: from Vectorworks 2019