User`s guide

Print Method - Issues the Print command to the current tool. The default printer and current print settings will
be used.
Syntax
AppObj.Print
AppObj is the required GigaView Application Object.
Example
Dim Visi
Set Visi = CreateObject ("Visi.Application")
Visi.New ("Histogram")
Visi.Print
Restore Method - This method restores the current child view to its normal size within the main window frame. This
command will reverse the effect of a Minimize or Maximize command.
Syntax
AppObj.Restore
AppObj is the required GigaView Application Object.
Example
Dim Visi
Set Visi = CreateObject ("Visi.Application")
Visi.Open ("C:\Visi\Histogram1.vtd")
Visi.Minimize
Visi.Restore
Save Method - This method can be used to open a previously saved tool.
Syntax
AppObj.Save(ToolPath)
AppObj is the required GigaView Application Object.
ToolPath is a required String variable that contains the path to save the tool to.
Example
Dim Visi
Set Visi = CreateObject ("Visi.Application")
Visi.New ("Histogram")
Visi.SingleStop
Visi.Save ("C:\Visi\Histogram1.vtd")
Select Method - This method allows a user to select which view is currently active within the main window frame.
This tool will have the focus for all the subsequent commands.
Syntax
AppObj.Select(ViewName)
AppObj is the required GigaView Application Object.
ViewName is a required String variable that contains the name of the window to receive input focus. This name can
be obtained from the list of available views which is presented when the View menu is activated. These view
names are also displayed in the Title Bars of the individual views.
Example
Dim Visi
Set Visi = CreateObject ("Visi.Application")
Visi.New ("Histogram")
Visi.New ("HiFreqMod")
Visi.SingleStop
Visi.Select ("Histogram1")
Visi.SingleStop
©
WAVECREST Corporation 2005
Appendix A
277