Show / Hide Table of Contents

Class Sheet

Base class for all types fo sheets. Descendants include Worksheet and Chartsheet.

Inheritance
System.Object
Sheet
Chartsheet
Dialogsheet
Worksheet
Namespace: DRIT.Spreadsheet
Assembly: DRIT.Spreadsheet.dll
Syntax
public abstract class Sheet : object

Constructors

Sheet()

Declaration
protected Sheet()

Sheet(Workbook)

Declaration
protected Sheet(Workbook workbook)
Parameters
Type Name Description
Workbook workbook

Sheet(Workbook, String)

Declaration
protected Sheet(Workbook workbook, string name)
Parameters
Type Name Description
Workbook workbook
System.String name

Properties

Name

Get or set the name of the sheet.

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String

Properties

Get or set the properties of the worksheet.

Declaration
public SheetProperties Properties { get; set; }
Property Value
Type Description
SheetProperties

Protection

Get or set the protection of the worksheet.

Declaration
public SheetProtection Protection { get; }
Property Value
Type Description
SheetProtection

View

Get or set the view of the worksheet

Declaration
public SheetView View { get; protected set; }
Property Value
Type Description
SheetView

Visibility

Declaration
public SheetState Visibility { get; set; }
Property Value
Type Description
SheetState

Workbook

Get the workbook which contains the current sheet.

Declaration
public Workbook Workbook { get; }
Property Value
Type Description
Workbook
Back to top Generated by DocFX