Library.Option
This property returns a Statistica Option.
| Syntax | Parameters | Return Value |
|---|---|---|
| - | - | StatisticaOption |
SVB Example
Customizing program options:
Option Base 1
Option Explicit
Sub Main
'change the options so that workbook tab controls are on
'top of the workbook
Application.Option.Workbook.TabControlOrientation = scTop
'create a workbook
Dim wk As Workbook
Set wk = Application.Workbooks.New
wk.Visible = True
End Sub
Copyright © 2020. Cloud Software Group, Inc. All Rights Reserved.
