# C1.WPF.Excel.XLSheet

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="C1_WPF_Excel_XLSheet" data-uid="C1.WPF.Excel.XLSheet" class="text-break">XLSheet Class
</h1>
  <div class="markdown level0 summary"><p>Represents individual worksheets in an Excel workbook (<a class="xref" href="C1.WPF.Excel.C1XLBook.html">C1XLBook</a>).</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <div class="inheritance">
    <h5>Inheritance</h5>
    <div class="level0"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></div>
    <div class="level1"><span class="xref">XLSheet</span></div>
  </div>
  <div class="implements">
    <h5>Implements</h5>
    <div><a class="xref" href="C1.WPF.Excel.ICloneable.html">ICloneable</a></div>
  </div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.WPF.Excel.html">C1.WPF.Excel</a></h6>
  <h6><strong>Assembly</strong>: C1.WPF.Excel.4.6.2.dll</h6>
  <h5 id="C1_WPF_Excel_XLSheet_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">public class XLSheet : ICloneable</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">Public Class XLSheet
    Implements ICloneable</code></pre>
  </div>
  <h5 id="C1_WPF_Excel_XLSheet_remarks"><strong>Remarks</strong></h5>
  <div class="markdown level0 remarks"><p>Provides indexers to get or set the value of individual cells (<a class="xref" href="C1.WPF.Excel.XLCell.html">XLCell</a>)
and to access the <a class="xref" href="C1.WPF.Excel.XLSheet.Rows.html#C1_WPF_Excel_XLSheet_Rows">Rows</a> and <a class="xref" href="C1.WPF.Excel.XLSheet.Columns.html#C1_WPF_Excel_XLSheet_Columns">Columns</a> on the sheet.</p>
</div>
  <h5 id="C1_WPF_Excel_XLSheet_examples"><strong>Examples</strong></h5>
  <p>Use the <a class="xref" href="C1.WPF.Excel.C1XLBook.html">C1XLBook</a><a class="xref" href="C1.WPF.Excel.C1XLBook.Sheets.html#C1_WPF_Excel_C1XLBook_Sheets">Sheets</a> indexer to get an individual
sheet. For example, the code below gets a reference to the first sheet on the book, then
prints the number of rows and columns on the sheet:</p>
<pre><code class="lang-csharp">C1XLBook book = new C1XLBook();
XLSheet sheet = book.Sheets[0];
Debug.WriteLine("Sheet has {0} rows and {1} columns",
  sheet.Rows.Count, sheet.Columns.Count);</code></pre>

  <h3 id="properties">Properties
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_Background" data-uid="C1.WPF.Excel.XLSheet.Background">
          <a class="xref" href="C1.WPF.Excel.XLSheet.Background.html#C1_WPF_Excel_XLSheet_Background">Background</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the background bitmap (image) of the <a class="xref" href="C1.WPF.Excel.XLSheet.html">XLSheet</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_Book" data-uid="C1.WPF.Excel.XLSheet.Book">
          <a class="xref" href="C1.WPF.Excel.XLSheet.Book.html#C1_WPF_Excel_XLSheet_Book">Book</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a reference to the <a class="xref" href="C1.WPF.Excel.C1XLBook.html">C1XLBook</a> that owns the sheet.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_CodeName" data-uid="C1.WPF.Excel.XLSheet.CodeName">
          <a class="xref" href="C1.WPF.Excel.XLSheet.CodeName.html#C1_WPF_Excel_XLSheet_CodeName">CodeName</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the code name of the <a class="xref" href="C1.WPF.Excel.XLSheet.html">XLSheet</a>. Is need for VBA operations.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_ColumnMaxLevel" data-uid="C1.WPF.Excel.XLSheet.ColumnMaxLevel">
          <a class="xref" href="C1.WPF.Excel.XLSheet.ColumnMaxLevel.html#C1_WPF_Excel_XLSheet_ColumnMaxLevel">ColumnMaxLevel</a>
        </td>
        <td class="markdown level1 summary"><p>Gets maximum outline level for columns.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_Columns" data-uid="C1.WPF.Excel.XLSheet.Columns">
          <a class="xref" href="C1.WPF.Excel.XLSheet.Columns.html#C1_WPF_Excel_XLSheet_Columns">Columns</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a reference to sheet's column collection.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_Comments" data-uid="C1.WPF.Excel.XLSheet.Comments">
          <a class="xref" href="C1.WPF.Excel.XLSheet.Comments.html#C1_WPF_Excel_XLSheet_Comments">Comments</a>
        </td>
        <td class="markdown level1 summary"><p>Gets an <a class="xref" href="C1.WPF.Excel.XLCommentCollection.html">XLCommentCollection</a> that contains the
collection of comments that on the sheet.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_ConditionalFormattings" data-uid="C1.WPF.Excel.XLSheet.ConditionalFormattings">
          <a class="xref" href="C1.WPF.Excel.XLSheet.ConditionalFormattings.html#C1_WPF_Excel_XLSheet_ConditionalFormattings">ConditionalFormattings</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the collection of <a class="xref" href="C1.WPF.Excel.XLConditionalFormatting.html">XLConditionalFormatting</a> objects for the current workbook.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_DataValidations" data-uid="C1.WPF.Excel.XLSheet.DataValidations">
          <a class="xref" href="C1.WPF.Excel.XLSheet.DataValidations.html#C1_WPF_Excel_XLSheet_DataValidations">DataValidations</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the collection of <a class="xref" href="C1.WPF.Excel.XLDataValidation.html">XLDataValidation</a> objects for the current workbook.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_DefaultColumnWidth" data-uid="C1.WPF.Excel.XLSheet.DefaultColumnWidth">
          <a class="xref" href="C1.WPF.Excel.XLSheet.DefaultColumnWidth.html#C1_WPF_Excel_XLSheet_DefaultColumnWidth">DefaultColumnWidth</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the default column width for the sheet (in twips).</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_DefaultRowHeight" data-uid="C1.WPF.Excel.XLSheet.DefaultRowHeight">
          <a class="xref" href="C1.WPF.Excel.XLSheet.DefaultRowHeight.html#C1_WPF_Excel_XLSheet_DefaultRowHeight">DefaultRowHeight</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the default row height for the sheet (in twips).</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_GridColor" data-uid="C1.WPF.Excel.XLSheet.GridColor">
          <a class="xref" href="C1.WPF.Excel.XLSheet.GridColor.html#C1_WPF_Excel_XLSheet_GridColor">GridColor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the color used to display grid lines.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_Item_System_Int32_System_Int32_" data-uid="C1.WPF.Excel.XLSheet.Item(System.Int32,System.Int32)">
          <a class="xref" href="C1.WPF.Excel.XLSheet.Item.html#C1_WPF_Excel_XLSheet_Item_System_Int32_System_Int32_">this[int, int]</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the cell at a specified position on the sheet, creating a new cell if necessary.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_Locked" data-uid="C1.WPF.Excel.XLSheet.Locked">
          <a class="xref" href="C1.WPF.Excel.XLSheet.Locked.html#C1_WPF_Excel_XLSheet_Locked">Locked</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that determines if the sheet is locked for editing.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_MaxOutlineLevel" data-uid="C1.WPF.Excel.XLSheet.MaxOutlineLevel">
          <a class="xref" href="C1.WPF.Excel.XLSheet.MaxOutlineLevel.html#C1_WPF_Excel_XLSheet_MaxOutlineLevel">MaxOutlineLevel</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the maximum subtotals outline level for rows or columns.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_MergedCells" data-uid="C1.WPF.Excel.XLSheet.MergedCells">
          <a class="xref" href="C1.WPF.Excel.XLSheet.MergedCells.html#C1_WPF_Excel_XLSheet_MergedCells">MergedCells</a>
        </td>
        <td class="markdown level1 summary"><p>Gets an <a class="xref" href="C1.WPF.Excel.XLCellRangeCollection.html">XLCellRangeCollection</a> that contains the
collection of cells that are merged on the sheet.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_Name" data-uid="C1.WPF.Excel.XLSheet.Name">
          <a class="xref" href="C1.WPF.Excel.XLSheet.Name.html#C1_WPF_Excel_XLSheet_Name">Name</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the name of the <a class="xref" href="C1.WPF.Excel.XLSheet.html">XLSheet</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_OutlinesBelow" data-uid="C1.WPF.Excel.XLSheet.OutlinesBelow">
          <a class="xref" href="C1.WPF.Excel.XLSheet.OutlinesBelow.html#C1_WPF_Excel_XLSheet_OutlinesBelow">OutlinesBelow</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating the vertical location of outline buttons.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_OutlinesRight" data-uid="C1.WPF.Excel.XLSheet.OutlinesRight">
          <a class="xref" href="C1.WPF.Excel.XLSheet.OutlinesRight.html#C1_WPF_Excel_XLSheet_OutlinesRight">OutlinesRight</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating the horizontal location of outline buttons.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_PageBreakPreview" data-uid="C1.WPF.Excel.XLSheet.PageBreakPreview">
          <a class="xref" href="C1.WPF.Excel.XLSheet.PageBreakPreview.html#C1_WPF_Excel_XLSheet_PageBreakPreview">PageBreakPreview</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets whether Excel should show page break preview when displaying the sheet.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_PrintSettings" data-uid="C1.WPF.Excel.XLSheet.PrintSettings">
          <a class="xref" href="C1.WPF.Excel.XLSheet.PrintSettings.html#C1_WPF_Excel_XLSheet_PrintSettings">PrintSettings</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets an <a class="xref" href="C1.WPF.Excel.XLPrintSettings.html">XLPrintSettings</a> object that controls how the
sheet is printed.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_RowMaxLevel" data-uid="C1.WPF.Excel.XLSheet.RowMaxLevel">
          <a class="xref" href="C1.WPF.Excel.XLSheet.RowMaxLevel.html#C1_WPF_Excel_XLSheet_RowMaxLevel">RowMaxLevel</a>
        </td>
        <td class="markdown level1 summary"><p>Gets maximum outline level for rows.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_Rows" data-uid="C1.WPF.Excel.XLSheet.Rows">
          <a class="xref" href="C1.WPF.Excel.XLSheet.Rows.html#C1_WPF_Excel_XLSheet_Rows">Rows</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a reference to the sheet's row collection.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_Scale" data-uid="C1.WPF.Excel.XLSheet.Scale">
          <a class="xref" href="C1.WPF.Excel.XLSheet.Scale.html#C1_WPF_Excel_XLSheet_Scale">Scale</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the view scale of this worksheet using percentages.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_ScaleNormal" data-uid="C1.WPF.Excel.XLSheet.ScaleNormal">
          <a class="xref" href="C1.WPF.Excel.XLSheet.ScaleNormal.html#C1_WPF_Excel_XLSheet_ScaleNormal">ScaleNormal</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the view scale for normal view of this worksheet using percentages.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_SelectedCells" data-uid="C1.WPF.Excel.XLSheet.SelectedCells">
          <a class="xref" href="C1.WPF.Excel.XLSheet.SelectedCells.html#C1_WPF_Excel_XLSheet_SelectedCells">SelectedCells</a>
        </td>
        <td class="markdown level1 summary"><p>Gets an <a class="xref" href="C1.WPF.Excel.XLCellRangeCollection.html">XLCellRangeCollection</a> that contains the
collection of cells that are selected on the sheet.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_Shapes" data-uid="C1.WPF.Excel.XLSheet.Shapes">
          <a class="xref" href="C1.WPF.Excel.XLSheet.Shapes.html#C1_WPF_Excel_XLSheet_Shapes">Shapes</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a reference to the <a class="xref" href="C1.WPF.Excel.ShapeCollection.html">ShapeCollection</a> for the sheet.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_ShowGridLines" data-uid="C1.WPF.Excel.XLSheet.ShowGridLines">
          <a class="xref" href="C1.WPF.Excel.XLSheet.ShowGridLines.html#C1_WPF_Excel_XLSheet_ShowGridLines">ShowGridLines</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets whether Excel should show the grid lines when displaying the sheet.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_ShowHeaders" data-uid="C1.WPF.Excel.XLSheet.ShowHeaders">
          <a class="xref" href="C1.WPF.Excel.XLSheet.ShowHeaders.html#C1_WPF_Excel_XLSheet_ShowHeaders">ShowHeaders</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets whether Excel should show the row and column headers when displaying the sheet.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_ShowZeros" data-uid="C1.WPF.Excel.XLSheet.ShowZeros">
          <a class="xref" href="C1.WPF.Excel.XLSheet.ShowZeros.html#C1_WPF_Excel_XLSheet_ShowZeros">ShowZeros</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets whether Excel should show the zero values on the sheet.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_TabColor" data-uid="C1.WPF.Excel.XLSheet.TabColor">
          <a class="xref" href="C1.WPF.Excel.XLSheet.TabColor.html#C1_WPF_Excel_XLSheet_TabColor">TabColor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the color used to display the tab of this sheet.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_TotalsBelowData" data-uid="C1.WPF.Excel.XLSheet.TotalsBelowData">
          <a class="xref" href="C1.WPF.Excel.XLSheet.TotalsBelowData.html#C1_WPF_Excel_XLSheet_TotalsBelowData">TotalsBelowData</a>
        </td>
        <td class="markdown level1 summary"><p>Gets whether Excel should show the subtotals data when displaying the sheet.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_ViewLayout" data-uid="C1.WPF.Excel.XLSheet.ViewLayout">
          <a class="xref" href="C1.WPF.Excel.XLSheet.ViewLayout.html#C1_WPF_Excel_XLSheet_ViewLayout">ViewLayout</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets whether Excel should show view layout (preview) when displaying the sheet.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_Visible" data-uid="C1.WPF.Excel.XLSheet.Visible">
          <a class="xref" href="C1.WPF.Excel.XLSheet.Visible.html#C1_WPF_Excel_XLSheet_Visible">Visible</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the sheet's visibility.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="methods">Methods
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_Clone" data-uid="C1.WPF.Excel.XLSheet.Clone">
          <a class="xref" href="C1.WPF.Excel.XLSheet.Clone.html#C1_WPF_Excel_XLSheet_Clone">Clone()</a>
        </td>
        <td class="markdown level1 summary"><p>Creates a copy of this sheet.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_CopyFormula_System_Int32_System_Int32_System_Int32_System_Int32_" data-uid="C1.WPF.Excel.XLSheet.CopyFormula(System.Int32,System.Int32,System.Int32,System.Int32)">
          <a class="xref" href="C1.WPF.Excel.XLSheet.CopyFormula.html#C1_WPF_Excel_XLSheet_CopyFormula_System_Int32_System_Int32_System_Int32_System_Int32_">CopyFormula(int, int, int, int)</a>
        </td>
        <td class="markdown level1 summary"><p>Copies the formula from a source cell to a destination cell, adjusting relative references.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_GetCell_System_Int32_System_Int32_" data-uid="C1.WPF.Excel.XLSheet.GetCell(System.Int32,System.Int32)">
          <a class="xref" href="C1.WPF.Excel.XLSheet.GetCell.html#C1_WPF_Excel_XLSheet_GetCell_System_Int32_System_Int32_">GetCell(int, int)</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a reference to a cell at the specified coordinates or null if the cell doesn't exist.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_GetFormattedText_System_Int32_System_Int32_" data-uid="C1.WPF.Excel.XLSheet.GetFormattedText(System.Int32,System.Int32)">
          <a class="xref" href="C1.WPF.Excel.XLSheet.GetFormattedText.html#C1_WPF_Excel_XLSheet_GetFormattedText_System_Int32_System_Int32_">GetFormattedText(int, int)</a>
        </td>
        <td class="markdown level1 summary"><p>Gets formatted text is using <a class="xref" href="C1.WPF.Excel.XLStyle.html">XLStyle</a> format value of the cell.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_GetRangeToRepeat_System_Int32__System_Int32__System_Int32__System_Int32__" data-uid="C1.WPF.Excel.XLSheet.GetRangeToRepeat(System.Int32@,System.Int32@,System.Int32@,System.Int32@)">
          <a class="xref" href="C1.WPF.Excel.XLSheet.GetRangeToRepeat.html#C1_WPF_Excel_XLSheet_GetRangeToRepeat_System_Int32__System_Int32__System_Int32__System_Int32__">GetRangeToRepeat(out int, out int, out int, out int)</a>
        </td>
        <td class="markdown level1 summary"><p>Returns a value indicating whether print titles are specified for this worksheet.
(Print titles are rows repeated at top, and columns repeated at left of each page
when the sheet is printed.)
Output parameters indicate the indexes of title rows and columns.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_Load_System_IO_Stream_System_Boolean_" data-uid="C1.WPF.Excel.XLSheet.Load(System.IO.Stream,System.Boolean)">
          <a class="xref" href="C1.WPF.Excel.XLSheet.Load.html#C1_WPF_Excel_XLSheet_Load_System_IO_Stream_System_Boolean_">Load(Stream, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads the Excel worksheet from a stream.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_Load_System_String_System_Boolean_" data-uid="C1.WPF.Excel.XLSheet.Load(System.String,System.Boolean)">
          <a class="xref" href="C1.WPF.Excel.XLSheet.Load.html#C1_WPF_Excel_XLSheet_Load_System_String_System_Boolean_">Load(string, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads the Excel worksheet from a file.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_LoadCsv_System_IO_Stream_" data-uid="C1.WPF.Excel.XLSheet.LoadCsv(System.IO.Stream)">
          <a class="xref" href="C1.WPF.Excel.XLSheet.LoadCsv.html#C1_WPF_Excel_XLSheet_LoadCsv_System_IO_Stream_">LoadCsv(Stream)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads data from a stream containing comma-separated values (.csv) into the current sheet.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_LoadCsv_System_String_" data-uid="C1.WPF.Excel.XLSheet.LoadCsv(System.String)">
          <a class="xref" href="C1.WPF.Excel.XLSheet.LoadCsv.html#C1_WPF_Excel_XLSheet_LoadCsv_System_String_">LoadCsv(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads data from a file containing comma-separated values (.csv) into the current sheet.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_SaveCsv_System_IO_Stream_" data-uid="C1.WPF.Excel.XLSheet.SaveCsv(System.IO.Stream)">
          <a class="xref" href="C1.WPF.Excel.XLSheet.SaveCsv.html#C1_WPF_Excel_XLSheet_SaveCsv_System_IO_Stream_">SaveCsv(Stream)</a>
        </td>
        <td class="markdown level1 summary"><p>Saves data from the current sheet into a comma-separated values (.csv) formatted stream.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_SaveCsv_System_String_" data-uid="C1.WPF.Excel.XLSheet.SaveCsv(System.String)">
          <a class="xref" href="C1.WPF.Excel.XLSheet.SaveCsv.html#C1_WPF_Excel_XLSheet_SaveCsv_System_String_">SaveCsv(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Saves data from the current sheet into a comma-separated values (.csv) formatted file.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Excel_XLSheet_SetRangeToRepeat_System_Int32_System_Int32_System_Int32_System_Int32_" data-uid="C1.WPF.Excel.XLSheet.SetRangeToRepeat(System.Int32,System.Int32,System.Int32,System.Int32)">
          <a class="xref" href="C1.WPF.Excel.XLSheet.SetRangeToRepeat.html#C1_WPF_Excel_XLSheet_SetRangeToRepeat_System_Int32_System_Int32_System_Int32_System_Int32_">SetRangeToRepeat(int, int, int, int)</a>
        </td>
        <td class="markdown level1 summary"><p>Specifies the range of rows or/and columns to use as print titles for this worksheet.
(Print titles are rows repeated at top, and columns repeated at left of each page
when the sheet is printed.)</p>
</td>
      </tr>
    </tbody>
  </table>

</div>
