KB no longer maintained - Voxler is a retired product. Golden Software retired products are still supported, but no longer receive new features or updates. Many of Voxler's features are moving to Surfer . Please contact support@goldensoftware.com with any questions. |
This article contains a sample script for loading an existing VOXB file, adding a bounding box, then changing all the properties of the bounding box.
To run this script:
- Copy the script below, or click here to download the BAS file: BoundingBoxModule.BAS
- In a Windows Explorer window, navigate to C:\Program Files\Golden Software\Voxler 4\Scripter.
- Double click on Scripter.exe to launch Scripter.
- Press Ctrl+A to select all of the existing lines then press Delete.
- If you copied this script, press Ctrl+V to paste it into Scripter. If you downloaded it, click File | Open, select the BAS file from your downloads directory, and click Open.
- Click Script | Run to run the script.
*********
'******************************************************************************************** ' BoundingBoxModule.bas ' This script loads an existing VOXB file and adds a bounding box. ' It then changes all the properties of the bounding box. ' '******************************************************************************************** ' If Voxler is running, retrieve the current instance of Voxler. Otherwise, ' create a new instance of Voxler. Function VoxlerApplication() On Error Resume Next Set VoxlerApplication = GetObject(, "Voxler.Application") If Err.Number <> 0 Then Set VoxlerApplication = CreateObject("Voxler.Application") End If On Error GoTo 0 End Function Sub Main 'Retrieve running instance of Voxler or create a new instance of Voxler Dim VoxlerApp As Object Set VoxlerApp = VoxlerApplication() 'Make Voxler visible VoxlerApp.Visible = True 'Access CommandApi Set CommandApi = VoxlerApp.CommandApi 'Create a new Voxler document CommandApi.Construct ("New") CommandApi.DoOnce() 'Open an existing file CommandApi.Construct ("Open") CommandApi.Option ("Path", VoxlerApp.Path+"\Samples\Inversion (Isosurfaces).voxb") CommandApi.DoOnce() 'Add a bounding box CommandApi.Construct ("CreateModule") CommandApi.Option ("Type", "BoundingBox") CommandApi.Option ("AutoConnect", "True") CommandApi.Option ("SourceModule", "Gridder") CommandApi.Do() 'Change the bounding box color to blue CommandApi.Construct ("ModifyModule") CommandApi.Option ("Module", "BoundingBox") CommandApi.Option ("BoundingBoxColor", "Blue") CommandApi.Do() 'Change the bounding box line width to 2 CommandApi.Option ("BoundingBoxLineWidth", "2") CommandApi.Do() 'Show labels on the bounding box CommandApi.Option ("BoundingBoxShowLabels","True") CommandApi.Do() 'Change the bounding box label font to Times New Roman CommandApi.Option ("BoundingBoxFont", "Times New Roman") CommandApi.Do() 'Change the bounding box label size CommandApi.Option ("BoundingBoxLabelSize", "12") CommandApi.Do() 'Change the bounding box label color to red CommandApi.Option ("BoundingBoxLabelColor", "Red") CommandApi.Do() End Sub
Updated February 21, 2019
Comments
0 comments
Please sign in to leave a comment.