[]
Represents worksheet view options.
public interface IWorksheetView
Gets or sets whether the worksheet displays formulas. True if formulas are displayed; False if the worksheet displays values.
bool DisplayFormulas { get; set; }
Gets or sets whether gridlines are displayed. When this is set, DisplayVerticalGridlines and DisplayHorizontalGridlines would be set to same value.
bool DisplayGridlines { get; set; }
Gets or sets whether headers are displayed (True if both row and column headings are displayed; False if there are no headings displayed).
bool DisplayHeadings { get; set; }
Gets or sets whether horizontal gridlines are displayed. When this is set false, DisplayGridlines would be false, too.
bool DisplayHorizontalGridlines { get; set; }
Gets or sets whether outline symbols are displayed.
bool DisplayOutline { get; set; }
Gets or sets whether the specified worksheet is displayed from right to left instead of from left to right (False if the object is displayed from left to right).
bool DisplayRightToLeft { get; set; }
Gets or sets whether a ruler is displayed for the specified worksheet (read or write).
bool DisplayRuler { get; set; }
Gets or sets whether vertical gridlines are displayed. When this is set false, DisplayGridlines would be false, too.
bool DisplayVerticalGridlines { get; set; }
Gets or sets whether whitespace is displayed (read or write).
bool DisplayWhitespace { get; set; }
Gets or sets whether zero values are displayed.
bool DisplayZeros { get; set; }
Returns or sets the GrapeCity.Documents.Excel.RGBColor object that represents the gridline color of the worksheet.
Color GridlineColor { get; set; }
Returns or sets the number of the leftmost column in the pane or worksheet.
int ScrollColumn { get; set; }
Returns or sets the number of the row that appears at the top of the pane or worksheet.
int ScrollRow { get; set; }
Gets and sets the view type.
ViewType ViewType { get; set; }
Returns or sets a Variant value that represents the display size of the worksheet, as a percentage(100 equals normal size, 200 equals double size, and so on).
int Zoom { get; set; }