Skip to main content
A newer version of this page is available. .

SpreadsheetScrollbarOptions.Visibility Property

Gets or sets a value that indicates whether the SpreadsheetControl’s scrollbar should be displayed or hidden.

Namespace: DevExpress.XtraSpreadsheet

Assembly: DevExpress.XtraSpreadsheet.v19.2.dll

Declaration

[XtraSerializableProperty]
public SpreadsheetScrollbarVisibility Visibility { get; set; }

Property Value

Type Description
SpreadsheetScrollbarVisibility

One of the SpreadsheetScrollbarVisibility enumeration values.

Available values:

Name Description
Auto

The scrollbar is hidden or displayed depending on the workbook display options.

Visible

The scrollbar is always displayed.

Hidden

The scrollbar is always hidden.

Property Paths

You can access this nested property as listed below:

Object Type Path to Visibility
SpreadsheetControlOptions
.HorizontalScrollbar.Visibility

Remarks

Use the Visibility property to control the visibility of the horizontal and vertical scrollbars in the SpreadsheetControl. Note that this property only specifies the way a document is displayed in the SpreadsheetControl and does not change a workbook file.

Note

Currently, the SpreadsheetScrollbarVisibility.Auto value has no effect on the visual appearance of the SpreadsheetControl - both horizontal and vertical scrollbars will be displayed despite the settings of the loaded document.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Visibility property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also