AllowPivotChartView Property [Access 2003 VBA Language Reference]

Returns or sets a Boolean indicating whether the specified form may be viewed in PivotChart View. True if PivotChart View is allowed. Read/write.

expression.AllowPivotChartView

expression Required. An expression that returns one of the objects in the Applies To list.

Remarks

Use the AllowDatasheetView, AllowFormView, AllowPivotChartView, or AllowPivotTableView properties to control which views are allowed for a form.

Example

The following example makes PivotChart View valid for the specified form and then opens the form in PivotChart View.

Forms(0).AllowPivotChartView = True
DoCmd.OpenForm FormName:=Forms(0).Name, View:=acFormPivotChart

Applies to | Form Object

See Also | AllowDatasheetView Property | AllowFormView Property | AllowPivotTableView Property