[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SpreadJSTabStripPosition

SpreadJSTabStripPosition Enum

Specifies the position of the SpreadJS tab strip relative to the workbook.

Use this enum with TabStripPosition to place the SpreadJS tab strip on the top, bottom, left, or right side of the workbook.

Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public enum SpreadJSTabStripPosition
Public Enum SpreadJSTabStripPosition
Examples
SpreadJSTabStripPosition position = SpreadJSTabStripPosition.Top;
workbook.BookView.TabStripPosition = position;
SpreadJSTabStripPosition currentPosition = workbook.BookView.TabStripPosition;
workbook.Save("workbook.sjs");

Fields

Name Description
Bottom

Specifies that the tab strip is displayed at the bottom of the workbook.

Left

Specifies that the tab strip is displayed on the left side of the workbook.

Right

Specifies that the tab strip is displayed on the right side of the workbook.

Top

Specifies that the tab strip is displayed at the top of the workbook.