Skip to content

Latest commit

 

History

History
56 lines (46 loc) · 1.04 KB

File metadata and controls

56 lines (46 loc) · 1.04 KB

ShowWebDlg

Description

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

Parameters

Name Type Description
title STRING
url STRING
buttonText STRING
contextualHelpID STRING

Examples

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)

Version

Availability: from Vectorworks 2019

Category