Click or drag to resize

BasicNoUIObjAddImports Method

Adds automatic imports to the WWB.NET language.

Namespace: WinWrap.Basic.Server
Assembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntax
public bool AddImports(
	string imports
)

Parameters

imports  String
All macros are parsed with automatic Imports for each import in the string. (Separate imports with a space.) To add imports to a specific module prefix it with "modulepath|".

Return Value

Boolean
True if AddImports is successful.

Implements

IBasicNoUIAddImports(String)
Remarks
The WWB.NET language is extended with the automatic imports.

Use RemoveExtensions("") to remove all the references and automatic imports.

Example
Add automatic Imports:
basicIdeCtl1.AddImports("System.Windows.Forms");
See Also