Analysis.OutputOption

This property returns the output option for the analysis.

This property is read only.

Syntax Return Value
- OutputOption

SVB Example

Changing an analysis' output settings:

Option Base 1
Option Explicit
Sub main
    Dim newanalysis As Analysis
    'create a new Basic Statistics analysis using the active dataset
    Set newanalysis = Analysis (scBasicStatistics, ActiveDataSet)
    Dim OutOption As OutputOption
    'set the OutOption variable to the newanalysis.OutputOption
    Set OutOption = newanalysis.OutputOption
    'change the output placement to Individual Windows
    OutOption.Placement = scIndividualWindow
    newanalysis.Visible = True
    'Once the analysis is visible, run any output and it will
    'be placed in an individual window
End Sub