Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

The Worksheet class represents a single Excel worksheet.

Signature
C#
C#
[DefaultMember("Item")]
 public class Worksheet
{signature}{signature:
}
Signature
vb.net
vb.net
<DefaultMember("Item")> _
	Public Class Worksheet
{signature}
{remarks}
To add a Worksheet to a Workbook, call [
Remarks

To add a Worksheet to a Workbook, call Workbook.Worksheets.CreateWorksheet

\

(

\

)

|Worksheets

.

CreateWorksheet].

To

get

an

existing

Worksheet

call

[

Workbook.Worksheets

\

[index

or

name

\

]

|Worksheets.Item]. {remarks} {example} {code:csharp|title=C#}

.

Example
Code Block
csharp
csharp
titleC#

          //--- Create a new Worksheet
          ExcelApplication xla = new ExcelApplication();
          Workbook wb = xla.Create();
          Worksheet ws = wb.Worksheets.CreateWorksheet("Sheet2");

          //--- Get an existing Worksheet by index
          ExcelApplication xla = new ExcelApplication();
          Workbook wb = xla.Create();
          Worksheet ws = wb.Worksheets[0];

          //--- Get an existing Worksheet by name
          ExcelApplication xla = new ExcelApplication();
          Workbook wb = xla.Create();
          Worksheet ws = wb.Worksheets["Sheet1"];
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

          '--- Create a new Worksheet
          Dim xla As New ExcelApplication()
          Dim wb As Workbook = xla.Create()
          Dim ws As Worksheet = wb.Worksheets.CreateWorksheet("Sheet2")

          '--- Get an existing Worksheet by index
          Dim xla As New ExcelApplication()
          Dim wb As Workbook = xla.Create()
          Dim ws As Worksheet = wb.Worksheets(0)

          '--- Get an existing Worksheet by name
          Dim xla As New ExcelApplication()
          Dim wb As Workbook = xla.Create()
          Dim ws As Worksheet = wb.Worksheets("Sheet2")
        
{code} {example} {properties} || Name || Description || | [Cells|Worksheet.Cells] | {excerpt-include:Worksheet.Cells|nopanel=true} | | [Charts|Worksheet.Charts] | {excerpt-include:Worksheet.Charts|nopanel=true} | | [Comments|Worksheet.Comments] | {excerpt-include:Worksheet.Comments|nopanel=true} | | [FirstShownColumn|Worksheet.FirstShownColumn] | {excerpt-include:Worksheet.FirstShownColumn|nopanel=true} | | [FirstShownRow|Worksheet.FirstShownRow] | {excerpt-include:Worksheet.FirstShownRow|nopanel=true} | | [FreezePanes|Worksheet.FreezePanes] | {excerpt-include:Worksheet.FreezePanes|nopanel=true} | | [GridlinesColor|Worksheet.GridlinesColor] | {excerpt-include:Worksheet.GridlinesColor|nopanel=true} | | [Hyperlinks|Worksheet.Hyperlinks] | {excerpt-include:Worksheet.Hyperlinks|nopanel=true} | | [IsProtected|Worksheet.IsProtected] | {excerpt-include:Worksheet.IsProtected|nopanel=true} | | [IsSelected|Worksheet.IsSelected] | {excerpt-include:Worksheet.IsSelected|nopanel=true} | | [Name|Worksheet.Name] | {excerpt-include:Worksheet.Name|nopanel=true} | | [NamedRanges|Worksheet.NamedRanges] | {excerpt-include:Worksheet.NamedRanges|nopanel=true} | | [PageSetup|Worksheet.PageSetup] | {excerpt-include:Worksheet.PageSetup|nopanel=true} | | [Pictures|Worksheet.Pictures] | {excerpt-include:Worksheet.Pictures|nopanel=true} | | [PopulatedCells|Worksheet.PopulatedCells] | {excerpt-include:Worksheet.PopulatedCells|nopanel=true} | | [Position|Worksheet.Position] | {excerpt-include:Worksheet.Position|nopanel=true} | | [ProtectPasswordHash|Worksheet.ProtectPasswordHash] | {excerpt-include:Worksheet.ProtectPasswordHash|nopanel=true} | | [ShapeGroups|Worksheet.ShapeGroups] | {excerpt-include:Worksheet.ShapeGroups|nopanel=true} | | [Shapes|Worksheet.Shapes] | {excerpt-include:Worksheet.Shapes|nopanel=true} | | [SheetProtection|Worksheet.SheetProtection] | {excerpt-include:Worksheet.SheetProtection|nopanel=true} | | [ShowFormulas|Worksheet.ShowFormulas] | {excerpt-include:Worksheet.ShowFormulas|nopanel=true} | | [ShowGridlines|Worksheet.ShowGridlines] | {excerpt-include:Worksheet.ShowGridlines|nopanel=true} | | [ShowRowColHeaders|Worksheet.ShowRowColHeaders] | {excerpt-include:Worksheet.ShowRowColHeaders|nopanel=true} | | [ShowZeroValues|Worksheet.ShowZeroValues] | {excerpt-include:Worksheet.ShowZeroValues|nopanel=true} | | [StandardHeight|Worksheet.StandardHeight] | {excerpt-include:Worksheet.StandardHeight|nopanel=true} | | [StandardWidth|Worksheet.StandardWidth] | {excerpt-include:Worksheet.StandardWidth|nopanel=true} | | [StandardWidthInChars|Worksheet.StandardWidthInChars] | {excerpt-include:Worksheet.StandardWidthInChars|nopanel=true} | | [SummaryColumns|Worksheet.SummaryColumns] | {excerpt-include:Worksheet.SummaryColumns|nopanel=true} | | [SummaryRows|Worksheet.SummaryRows] | {excerpt-include:Worksheet.SummaryRows|nopanel=true} | | [TabColor|Worksheet.TabColor] | {excerpt-include:Worksheet.TabColor|nopanel=true} | | [Workbook|Worksheet.Workbook] | {excerpt-include:Worksheet.Workbook|nopanel=true} | | [ViewState|Worksheet.ViewState] | {excerpt-include:Worksheet.ViewState|nopanel=true} | | [Visibility|Worksheet.Visibility] | {excerpt-include:Worksheet.Visibility|nopanel=true} | | [ZoomPercentage|Worksheet.ZoomPercentage] | {excerpt-include:Worksheet.ZoomPercentage|nopanel=true} | {indexers} || Name || Description || | [Item(Int32, Int32)|Worksheet.Item(Int32, Int32)] | {excerpt-include:Worksheet.Item(Int32, Int32)|nopanel=true} | | [Item(String)|Worksheet.Item(String)] | {excerpt-include:Worksheet.Item(String)|nopanel=true} | {methods} || Name || Description || | [CopyPaste(Cell, Area)|Worksheet.CopyPaste(Cell, Area)] | {excerpt-include:Worksheet.CopyPaste(Cell, Area)|nopanel=true} | | [CopyPaste(Cell, Area, CopyPasteProperties)|Worksheet.CopyPaste(Cell, Area, CopyPasteProperties)] | {excerpt-include:Worksheet.CopyPaste(Cell, Area, CopyPasteProperties)|nopanel=true} | | [CopyPaste(Int32, Int32, Area)|Worksheet.CopyPaste(Int32, Int32, Area)] | {excerpt-include:Worksheet.CopyPaste(Int32, Int32, Area)|nopanel=true} | | [CopyPaste(Int32, Int32, Area, CopyPasteProperties)|Worksheet.CopyPaste(Int32, Int32, Area, CopyPasteProperties)] | {excerpt-include:Worksheet.CopyPaste(Int32, Int32, Area, CopyPasteProperties)|nopanel=true} | | [CopyPaste(String, Area, CopyPasteProperties)|Worksheet.CopyPaste(String, Area, CopyPasteProperties)] | {excerpt-include:Worksheet.CopyPaste(String, Area, CopyPasteProperties)|nopanel=true} | | [CopyPaste(String, Area)|Worksheet.CopyPaste(String, Area)] | {excerpt-include:Worksheet.CopyPaste(String, Area)|nopanel=true} | | [CreateAnchor(Int32, Int32, Double, Double)|Worksheet.CreateAnchor(Int32, Int32, Double, Double)] | {excerpt-include:Worksheet.CreateAnchor(Int32, Int32, Double, Double)|nopanel=true} | | [CreateArea(Int32, Int32, Int32, Int32)|Worksheet.CreateArea(Int32, Int32, Int32, Int32)] | {excerpt-include:Worksheet.CreateArea(Int32, Int32, Int32, Int32)|nopanel=true} | | [CreateArea(String)|Worksheet.CreateArea(String)] | {excerpt-include:Worksheet.CreateArea(String)|nopanel=true} | | [CreateAreaOfColumns(Int32, Int32)|Worksheet.CreateAreaOfColumns(Int32, Int32)] | {excerpt-include:Worksheet.CreateAreaOfColumns(Int32, Int32)|nopanel=true} | | [CreateAreaOfRows(Int32, Int32)|Worksheet.CreateAreaOfRows(Int32, Int32)] | {excerpt-include:Worksheet.CreateAreaOfRows(Int32, Int32)|nopanel=true} | | [CreateNamedRange(Int32, Int32, Int32, Int32, String)|Worksheet.CreateNamedRange(Int32, Int32, Int32, Int32, String)] | {excerpt-include:Worksheet.CreateNamedRange(Int32, Int32, Int32, Int32, String)|nopanel=true} | | [CreateNamedRange(String, String)|Worksheet.CreateNamedRange(String, String)] | {excerpt-include:Worksheet.CreateNamedRange(String, String)|nopanel=true} | | [CreateRange(String)|Worksheet.CreateRange(String)] | {excerpt-include:Worksheet.CreateRange(String)|nopanel=true} | | [DeleteColumn(Int32)|Worksheet.DeleteColumn(Int32)] | {excerpt-include:Worksheet.DeleteColumn(Int32)|nopanel=true} | | [DeleteColumns(Int32, Int32)|Worksheet.DeleteColumns(Int32, Int32)] | {excerpt-include:Worksheet.DeleteColumns(Int32, Int32)|nopanel=true} | | [DeleteRow(Int32)|Worksheet.DeleteRow(Int32)] | {excerpt-include:Worksheet.DeleteRow(Int32)|nopanel=true} | | [DeleteRows(Int32, Int32)|Worksheet.DeleteRows(Int32, Int32)] | {excerpt-include:Worksheet.DeleteRows(Int32, Int32)|nopanel=true} | | [GetColumnProperties(Int32)|Worksheet.GetColumnProperties(Int32)] | {excerpt-include:Worksheet.GetColumnProperties(Int32)|nopanel=true} | | [GetNamedObject(String)|Worksheet.GetNamedObject(String)] | {excerpt-include:Worksheet.GetNamedObject(String)|nopanel=true} | | [GetNamedRange(String)|Worksheet.GetNamedRange(String)] | {excerpt-include:Worksheet.GetNamedRange(String)|nopanel=true} | | [GetRowProperties(Int32)|Worksheet.GetRowProperties(Int32)] | {excerpt-include:Worksheet.GetRowProperties(Int32)|nopanel=true} | | [GroupColumns(Int32, Int32, Boolean)|Worksheet.GroupColumns(Int32, Int32, Boolean)] | {excerpt-include:Worksheet.GroupColumns(Int32, Int32, Boolean)|nopanel=true} | | [GroupRows(Int32, Int32, Boolean)|Worksheet.GroupRows(Int32, Int32, Boolean)] | {excerpt-include:Worksheet.GroupRows(Int32, Int32, Boolean)|nopanel=true} | | [ImportData(Object()(), Cell)|
Properties

Name

Description

Cells

Excerpt Include
Worksheet.Cells
Worksheet.Cells
nopaneltrue

Charts

Excerpt Include
Worksheet.Charts
Worksheet.Charts
nopaneltrue

Comments

Excerpt Include
Worksheet.Comments
Worksheet.Comments
nopaneltrue

FirstShownColumn

Excerpt Include
Worksheet.FirstShownColumn
Worksheet.FirstShownColumn
nopaneltrue

FirstShownRow

Excerpt Include
Worksheet.FirstShownRow
Worksheet.FirstShownRow
nopaneltrue

FreezePanes

Excerpt Include
Worksheet.FreezePanes
Worksheet.FreezePanes
nopaneltrue

GridlinesColor

Excerpt Include
Worksheet.GridlinesColor
Worksheet.GridlinesColor
nopaneltrue

Hyperlinks

Excerpt Include
Worksheet.Hyperlinks
Worksheet.Hyperlinks
nopaneltrue

IsProtected

Excerpt Include
Worksheet.IsProtected
Worksheet.IsProtected
nopaneltrue

IsSelected

Excerpt Include
Worksheet.IsSelected
Worksheet.IsSelected
nopaneltrue

Name

Excerpt Include
Worksheet.Name
Worksheet.Name
nopaneltrue

NamedRanges

Excerpt Include
Worksheet.NamedRanges
Worksheet.NamedRanges
nopaneltrue

PageSetup

Excerpt Include
Worksheet.PageSetup
Worksheet.PageSetup
nopaneltrue

Pictures

Excerpt Include
Worksheet.Pictures
Worksheet.Pictures
nopaneltrue

PopulatedCells

Excerpt Include
Worksheet.PopulatedCells
Worksheet.PopulatedCells
nopaneltrue

Position

Excerpt Include
Worksheet.Position
Worksheet.Position
nopaneltrue

ProtectPasswordHash

Excerpt Include
Worksheet.ProtectPasswordHash
Worksheet.ProtectPasswordHash
nopaneltrue

ShapeGroups

Excerpt Include
Worksheet.ShapeGroups
Worksheet.ShapeGroups
nopaneltrue

Shapes

Excerpt Include
Worksheet.Shapes
Worksheet.Shapes
nopaneltrue

SheetProtection

Excerpt Include
Worksheet.SheetProtection
Worksheet.SheetProtection
nopaneltrue

ShowFormulas

Excerpt Include
Worksheet.ShowFormulas
Worksheet.ShowFormulas
nopaneltrue

ShowGridlines

Excerpt Include
Worksheet.ShowGridlines
Worksheet.ShowGridlines
nopaneltrue

ShowRowColHeaders

Excerpt Include
Worksheet.ShowRowColHeaders
Worksheet.ShowRowColHeaders
nopaneltrue

ShowZeroValues

Excerpt Include
Worksheet.ShowZeroValues
Worksheet.ShowZeroValues
nopaneltrue

StandardHeight

Excerpt Include
Worksheet.StandardHeight
Worksheet.StandardHeight
nopaneltrue

StandardWidth

Excerpt Include
Worksheet.StandardWidth
Worksheet.StandardWidth
nopaneltrue

StandardWidthInChars

Excerpt Include
Worksheet.StandardWidthInChars
Worksheet.StandardWidthInChars
nopaneltrue

SummaryColumns

Excerpt Include
Worksheet.SummaryColumns
Worksheet.SummaryColumns
nopaneltrue

SummaryRows

Excerpt Include
Worksheet.SummaryRows
Worksheet.SummaryRows
nopaneltrue

TabColor

Excerpt Include
Worksheet.TabColor
Worksheet.TabColor
nopaneltrue

Workbook

Excerpt Include
Worksheet.Workbook
Worksheet.Workbook
nopaneltrue

ViewState

Excerpt Include
Worksheet.ViewState
Worksheet.ViewState
nopaneltrue

Visibility

Excerpt Include
Worksheet.Visibility
Worksheet.Visibility
nopaneltrue

ZoomPercentage

Excerpt Include
Worksheet.ZoomPercentage
Worksheet.ZoomPercentage
nopaneltrue
Indexers

Name

Description

Item(Int32, Int32)

Excerpt Include
Worksheet.Item(Int32, Int32)
Worksheet.Item(Int32, Int32)
nopaneltrue

Item(String)

Excerpt Include
Worksheet.Item(String)
Worksheet.Item(String)
nopaneltrue
Methods

Name

Description

CopyPaste(Cell, Area)

Excerpt Include
Worksheet.CopyPaste(Cell, Area)
Worksheet.CopyPaste(Cell, Area)
nopaneltrue

CopyPaste(Cell, Area, CopyPasteProperties)

Excerpt Include
Worksheet.CopyPaste(Cell, Area, CopyPasteProperties)
Worksheet.CopyPaste(Cell, Area, CopyPasteProperties)
nopaneltrue

CopyPaste(Int32, Int32, Area)

Excerpt Include
Worksheet.CopyPaste(Int32, Int32, Area)
Worksheet.CopyPaste(Int32, Int32, Area)
nopaneltrue

CopyPaste(Int32, Int32, Area, CopyPasteProperties)

Excerpt Include
Worksheet.CopyPaste(Int32, Int32, Area, CopyPasteProperties)
Worksheet.CopyPaste(Int32, Int32, Area, CopyPasteProperties)
nopaneltrue

CopyPaste(String, Area, CopyPasteProperties)

Excerpt Include
Worksheet.CopyPaste(String, Area, CopyPasteProperties)
Worksheet.CopyPaste(String, Area, CopyPasteProperties)
nopaneltrue

CopyPaste(String, Area)

Excerpt Include
Worksheet.CopyPaste(String, Area)
Worksheet.CopyPaste(String, Area)
nopaneltrue

CreateAnchor(Int32, Int32, Double, Double)

Excerpt Include
Worksheet.CreateAnchor(Int32, Int32, Double, Double)
Worksheet.CreateAnchor(Int32, Int32, Double, Double)
nopaneltrue

CreateArea(Int32, Int32, Int32, Int32)

Excerpt Include
Worksheet.CreateArea(Int32, Int32, Int32, Int32)
Worksheet.CreateArea(Int32, Int32, Int32, Int32)
nopaneltrue

CreateArea(String)

Excerpt Include
Worksheet.CreateArea(String)
Worksheet.CreateArea(String)
nopaneltrue

CreateAreaOfColumns(Int32, Int32)

Excerpt Include
Worksheet.CreateAreaOfColumns(Int32, Int32)
Worksheet.CreateAreaOfColumns(Int32, Int32)
nopaneltrue

CreateAreaOfRows(Int32, Int32)

Excerpt Include
Worksheet.CreateAreaOfRows(Int32, Int32)
Worksheet.CreateAreaOfRows(Int32, Int32)
nopaneltrue

CreateNamedRange(Int32, Int32, Int32, Int32, String)

Excerpt Include
Worksheet.CreateNamedRange(Int32, Int32, Int32, Int32, String)
Worksheet.CreateNamedRange(Int32, Int32, Int32, Int32, String)
nopaneltrue

CreateNamedRange(String, String)

Excerpt Include
Worksheet.CreateNamedRange(String, String)
Worksheet.CreateNamedRange(String, String)
nopaneltrue

CreateRange(String)

Excerpt Include
Worksheet.CreateRange(String)
Worksheet.CreateRange(String)
nopaneltrue

DeleteColumn(Int32)

Excerpt Include
Worksheet.DeleteColumn(Int32)
Worksheet.DeleteColumn(Int32)
nopaneltrue

DeleteColumns(Int32, Int32)

Excerpt Include
Worksheet.DeleteColumns(Int32, Int32)
Worksheet.DeleteColumns(Int32, Int32)
nopaneltrue

DeleteRow(Int32)

Excerpt Include
Worksheet.DeleteRow(Int32)
Worksheet.DeleteRow(Int32)
nopaneltrue

DeleteRows(Int32, Int32)

Excerpt Include
Worksheet.DeleteRows(Int32, Int32)
Worksheet.DeleteRows(Int32, Int32)
nopaneltrue

GetColumnProperties(Int32)

Excerpt Include
Worksheet.GetColumnProperties(Int32)
Worksheet.GetColumnProperties(Int32)
nopaneltrue

GetNamedObject(String)

Excerpt Include
Worksheet.GetNamedObject(String)
Worksheet.GetNamedObject(String)
nopaneltrue

GetNamedRange(String)

Excerpt Include
Worksheet.GetNamedRange(String)
Worksheet.GetNamedRange(String)
nopaneltrue

GetRowProperties(Int32)

Excerpt Include
Worksheet.GetRowProperties(Int32)
Worksheet.GetRowProperties(Int32)
nopaneltrue

GroupColumns(Int32, Int32, Boolean)

Excerpt Include
Worksheet.GroupColumns(Int32, Int32, Boolean)
Worksheet.GroupColumns(Int32, Int32, Boolean)
nopaneltrue

GroupRows(Int32, Int32, Boolean)

Excerpt Include
Worksheet.GroupRows(Int32, Int32, Boolean)
Worksheet.GroupRows(Int32, Int32, Boolean)
nopaneltrue

ImportData(Object()(), Cell)

Excerpt Include
Worksheet.ImportData(Object()(),

...

Cell)

...

Worksheet.ImportData(Object()(),

...

Cell)

...

nopanel

...

...

...

...

...

Excerpt Include
Worksheet.ImportData(Object()(),

...

String(),

...

Cell,

...

DataImportProperties)

...

Worksheet.ImportData(Object()(),

...

String(),

...

Cell,

...

DataImportProperties)

...

nopanel

...

...

...

Excerpt Include
Worksheet.ImportData(System.Data.DataTable,

...

Cell)

...

Worksheet.ImportData(System.Data.DataTable,

...

Cell)

...

nopanel

...

...

...

...

Excerpt Include
Worksheet.ImportData(System.Data.DataTable,

...

Cell,

...

DataImportProperties)

...

Worksheet.ImportData(System.Data.DataTable,

...

Cell,

...

DataImportProperties)

...

nopanel

...

...

...

Excerpt Include
Worksheet.ImportData(System.Data.DataView,

...

Cell)

...

Worksheet.ImportData(System.Data.DataView,

...

Cell)

...

nopanel

...

...

...

...

Excerpt Include
Worksheet.ImportData(System.Data.DataView,

...

Cell,

...

DataImportProperties)

...

Worksheet.ImportData(System.Data.DataView,

...

Cell,

...

DataImportProperties)

...

nopanel

...

...

...

Excerpt Include
Worksheet.ImportData(Object(,),

...

Cell)

...

Worksheet.ImportData(Object(,),

...

Cell)

...

nopanel

...

...

...

...

...

Excerpt Include
Worksheet.ImportData(Object(,),

...

String(),

...

Cell,

...

DataImportProperties)

...

Worksheet.ImportData(Object(,),

...

String(),

...

Cell,

...

DataImportProperties)

...

nopanel

...

...

...

Excerpt Include
Worksheet.ImportData(System.Data.IDataReader,

...

Cell)

...

Worksheet.ImportData(System.Data.IDataReader,

...

Cell)

...

nopanel

...

...

...

...

Excerpt Include
Worksheet.ImportData(System.Data.IDataReader,

...

Cell,

...

DataImportProperties)

...

Worksheet.ImportData(System.Data.IDataReader,

...

Cell,

...

DataImportProperties)

...

nopanel

...

...

Excerpt Include
Worksheet.InsertColumn(Int32)

...

Worksheet.InsertColumn(Int32)

...

nopanel

...

...

...

Excerpt Include
Worksheet.InsertColumn(Int32,

...

Style.ColumnInsertBehavior)

...

Worksheet.InsertColumn(Int32,

...

Style.ColumnInsertBehavior)

...

nopanel

...

...

...

...

Excerpt Include
Worksheet.InsertColumn(Int32,

...

Style.ColumnInsertBehavior,

...

Style.ColumnInsertBehavior)

...

Worksheet.InsertColumn(Int32,

...

Style.ColumnInsertBehavior,

...

Style.ColumnInsertBehavior)

...

nopanel

...

...

...

Excerpt Include
Worksheet.InsertColumns(Int32,

...

Int32)

...

Worksheet.InsertColumns(Int32,

...

Int32)

...

nopanel

...

...

...

...

Excerpt Include
Worksheet.InsertColumns(Int32,

...

Int32,

...

Style.ColumnInsertBehavior)

...

Worksheet.InsertColumns(Int32,

...

Int32,

...

Style.ColumnInsertBehavior)

...

nopanel

...

...

...

...

...

Excerpt Include
Worksheet.InsertColumns(Int32,

...

Int32,

...

Style.ColumnInsertBehavior,

...

Style.ColumnInsertBehavior)

...

Worksheet.InsertColumns(Int32,

...

Int32,

...

Style.ColumnInsertBehavior,

...

Style.ColumnInsertBehavior)

...

nopanel

...

...

Excerpt Include
Worksheet.InsertHorizontalPageBreak(Cell)

...

Worksheet.InsertHorizontalPageBreak(Cell)

...

nopanel

...

...

Excerpt Include
Worksheet.InsertRow(Int32)

...

Worksheet.InsertRow(Int32)

...

nopanel

...

...

...

Excerpt Include
Worksheet.InsertRow(Int32,

...

Style.RowInsertBehavior)

...

Worksheet.InsertRow(Int32,

...

Style.RowInsertBehavior)

...

nopanel

...

...

...

...

Excerpt Include
Worksheet.InsertRow(Int32,

...

Style.RowInsertBehavior,

...

Style.RowInsertBehavior)

...

Worksheet.InsertRow(Int32,

...

Style.RowInsertBehavior,

...

Style.RowInsertBehavior)

...

nopanel

...

...

...

Excerpt Include
Worksheet.InsertRows(Int32,

...

Int32)

...

Worksheet.InsertRows(Int32,

...

Int32)

...

nopanel

...

...

...

...

Excerpt Include
Worksheet.InsertRows(Int32,

...

Int32,

...

Style.RowInsertBehavior)

...

Worksheet.InsertRows(Int32,

...

Int32,

...

Style.RowInsertBehavior)

...

nopanel

...

...

...

...

...

Excerpt Include
Worksheet.InsertRows(Int32,

...

Int32,

...

Style.RowInsertBehavior,

...

Style.RowInsertBehavior)

...

Worksheet.InsertRows(Int32,

...

Int32,

...

Style.RowInsertBehavior,

...

Style.RowInsertBehavior)

...

nopanel

...

...

Excerpt Include
Worksheet.InsertVerticalPageBreak(Cell)

...

Worksheet.InsertVerticalPageBreak(Cell)

...

nopanel

...

...

Excerpt Include
Worksheet.Protect(String)

...

Worksheet.Protect(String)

...

nopanel

...

...

Excerpt Include
Worksheet.Select()

...

Worksheet.Select()

...

nopanel

...

...

...

Excerpt Include
Worksheet.UngroupColumns(Int32,

...

Int32)

...

Worksheet.UngroupColumns(Int32,

...

Int32)

...

nopanel

...

...

...

Excerpt Include
Worksheet.UngroupRows(Int32,

...

Int32)

...

Worksheet.UngroupRows(Int32,

...

Int32)

...

nopanel

...

...

Excerpt Include
Worksheet.Unprotect()

...

Worksheet.Unprotect()

...

nopanel

...

true
Extensionmethods
Introducedin
7.5
7.5

Overload

Description

ImportData(Cell,

...

...

...

Excerpt Include
SharePointIntegration.ImportData(Worksheet,

...

Cell,

...

Microsoft.SharePoint.SPList,

...

DataImportProperties)

...

SharePointIntegration.ImportData(Worksheet,

...

Cell,

...

Microsoft.SharePoint.SPList,

...

DataImportProperties)

...

nopanel

...

...

...

Excerpt Include
SharePointIntegration.ImportData(Worksheet,

...

Cell,

...

Microsoft.SharePoint.SPList)

...

SharePointIntegration.ImportData(Worksheet,

...

Cell,

...

Microsoft.SharePoint.SPList)

...

nopanel

...

...

...

...

...

Excerpt Include
SharePointIntegration.ImportData(Worksheet,

...

Cell,

...

Microsoft.SharePoint.SPView,

...

Microsoft.SharePoint.SPList,

...

DataImportProperties)

...

SharePointIntegration.ImportData(Worksheet,

...

Cell,

...

Microsoft.SharePoint.SPView,

...

Microsoft.SharePoint.SPList,

...

DataImportProperties)

...

nopanel

...

...

...

...

Excerpt Include
SharePointIntegration.ImportData(Worksheet,

...

Cell,

...

Microsoft.SharePoint.SPView,

...

Microsoft.SharePoint.SPList)

...

SharePointIntegration.ImportData(Worksheet,

...

Cell,

...

Microsoft.SharePoint.SPView,

...

Microsoft.SharePoint.SPList)

...

nopanel

...

true
Classes

Name

Description

Constants

Excerpt Include
Worksheet.Constants
Worksheet.Constants
nopaneltrue

SheetViewState

Excerpt Include
Worksheet.SheetViewState
Worksheet.SheetViewState
nopaneltrue

SheetVisibility

Excerpt Include
Worksheet.SheetVisibility
Worksheet.SheetVisibility
nopaneltrue

SummaryColumnsLocation

Excerpt Include
Worksheet.SummaryColumnsLocation
Worksheet.SummaryColumnsLocation
nopaneltrue

SummaryRowsLocation

Excerpt Include
Worksheet.SummaryRowsLocation
Worksheet.SummaryRowsLocation
nopaneltrue