[]
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.
public enum SpreadJSTabStripPosition
Public Enum SpreadJSTabStripPosition
SpreadJSTabStripPosition position = SpreadJSTabStripPosition.Top;
workbook.BookView.TabStripPosition = position;
SpreadJSTabStripPosition currentPosition = workbook.BookView.TabStripPosition;
workbook.Save("workbook.sjs");
| 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. |