Application.Option

This property returns a Statistica Option.

This property is read only.

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