# FarPoint.Win.Spread.SheetViewCollection

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="FarPoint_Win_Spread_SheetViewCollection" data-uid="FarPoint.Win.Spread.SheetViewCollection" class="text-break">SheetViewCollection Class
</h1>
  <div class="markdown level0 summary"><p>Represents a collection of sheets (SheetView objects).</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"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.collectionbase">CollectionBase</a></div>
    <div class="level2"><span class="xref">SheetViewCollection</span></div>
  </div>
  <div class="implements">
    <h5>Implements</h5>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.ilist">IList</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.icollection">ICollection</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1">IReadOnlyCollection</a>&lt;<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.icomponent">IComponent</a>&gt;</div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1">IEnumerable</a>&lt;<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.icomponent">IComponent</a>&gt;</div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.ienumerable">IEnumerable</a></div>
  </div>
  <h6><strong>Namespace</strong>: <a class="xref" href="FarPoint.Win.Spread.html">FarPoint.Win.Spread</a></h6>
  <h6><strong>Assembly</strong>: FarPoint.Win.Spread.dll</h6>
  <h5 id="FarPoint_Win_Spread_SheetViewCollection_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">[ListBindable(false)]
public class SheetViewCollection : CollectionBase, IList, ICollection, IReadOnlyCollection&lt;IComponent&gt;, IEnumerable&lt;IComponent&gt;, IEnumerable</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">&lt;ListBindable(False)&gt;
Public Class SheetViewCollection
    Inherits CollectionBase
    Implements IList, ICollection, IReadOnlyCollection(Of IComponent), IEnumerable(Of IComponent), IEnumerable</code></pre>
  </div>
  <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="FarPoint_Win_Spread_SheetViewCollection_Count" data-uid="FarPoint.Win.Spread.SheetViewCollection.Count">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.Count.html#FarPoint_Win_Spread_SheetViewCollection_Count">Count</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the number of sheets (SheetView objects) in the collection.</p>
</td>
      </tr>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_IsFixedSize" data-uid="FarPoint.Win.Spread.SheetViewCollection.IsFixedSize">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.IsFixedSize.html#FarPoint_Win_Spread_SheetViewCollection_IsFixedSize">IsFixedSize</a>
        </td>
        <td class="markdown level1 summary"><p>Gets whether the collection has a fixed size.
(This implementation always returns false.)</p>
</td>
      </tr>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_IsReadOnly" data-uid="FarPoint.Win.Spread.SheetViewCollection.IsReadOnly">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.IsReadOnly.html#FarPoint_Win_Spread_SheetViewCollection_IsReadOnly">IsReadOnly</a>
        </td>
        <td class="markdown level1 summary"><p>Gets whether the collection is read-only.
(This implementation always returns false.)</p>
</td>
      </tr>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_Item_System_Int32_" data-uid="FarPoint.Win.Spread.SheetViewCollection.Item(System.Int32)">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.Item.html#FarPoint_Win_Spread_SheetViewCollection_Item_System_Int32_">this[int]</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the sheet (SheetView object) at the specified position in the collection.</p>
</td>
      </tr>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_Item_System_String_" data-uid="FarPoint.Win.Spread.SheetViewCollection.Item(System.String)">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.Item.html#FarPoint_Win_Spread_SheetViewCollection_Item_System_String_">this[string]</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the sheet (SheetView object) at the specified position in the collection.</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="FarPoint_Win_Spread_SheetViewCollection_Add_System_Object_" data-uid="FarPoint.Win.Spread.SheetViewCollection.Add(System.Object)">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.Add.html#FarPoint_Win_Spread_SheetViewCollection_Add_System_Object_">Add(object)</a>
        </td>
        <td class="markdown level1 summary"><p>Adds a sheet to the collection.</p>
</td>
      </tr>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_AddRange_FarPoint_Win_Spread_SheetView___" data-uid="FarPoint.Win.Spread.SheetViewCollection.AddRange(FarPoint.Win.Spread.SheetView[])">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.AddRange.html#FarPoint_Win_Spread_SheetViewCollection_AddRange_FarPoint_Win_Spread_SheetView___">AddRange(SheetView[])</a>
        </td>
        <td class="markdown level1 summary"><p>Adds an array of SheetView objects to the collection.</p>
</td>
      </tr>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_AddRange_System_Collections_ICollection_" data-uid="FarPoint.Win.Spread.SheetViewCollection.AddRange(System.Collections.ICollection)">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.AddRange.html#FarPoint_Win_Spread_SheetViewCollection_AddRange_System_Collections_ICollection_">AddRange(ICollection)</a>
        </td>
        <td class="markdown level1 summary"><p>Adds a range of sheets to the collection.</p>
</td>
      </tr>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_Clear" data-uid="FarPoint.Win.Spread.SheetViewCollection.Clear">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.Clear.html#FarPoint_Win_Spread_SheetViewCollection_Clear">Clear()</a>
        </td>
        <td class="markdown level1 summary"><p>Removes all the sheets from the collection.</p>
</td>
      </tr>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_Contains_FarPoint_Win_Spread_SheetView_" data-uid="FarPoint.Win.Spread.SheetViewCollection.Contains(FarPoint.Win.Spread.SheetView)">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.Contains.html#FarPoint_Win_Spread_SheetViewCollection_Contains_FarPoint_Win_Spread_SheetView_">Contains(SheetView)</a>
        </td>
        <td class="markdown level1 summary"><p>Specifies whether the collection contains the specified sheet.</p>
</td>
      </tr>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_CopyTo_System_Array_System_Int32_" data-uid="FarPoint.Win.Spread.SheetViewCollection.CopyTo(System.Array,System.Int32)">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.CopyTo.html#FarPoint_Win_Spread_SheetViewCollection_CopyTo_System_Array_System_Int32_">CopyTo(Array, int)</a>
        </td>
        <td class="markdown level1 summary"><p>Copies the sheets in the collection to an array.</p>
</td>
      </tr>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_Find_System_String_" data-uid="FarPoint.Win.Spread.SheetViewCollection.Find(System.String)">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.Find.html#FarPoint_Win_Spread_SheetViewCollection_Find_System_String_">Find(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Searches the collection for a sheet with the specified name.</p>
</td>
      </tr>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_IndexOf_FarPoint_Win_Spread_SheetView_" data-uid="FarPoint.Win.Spread.SheetViewCollection.IndexOf(FarPoint.Win.Spread.SheetView)">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.IndexOf.html#FarPoint_Win_Spread_SheetViewCollection_IndexOf_FarPoint_Win_Spread_SheetView_">IndexOf(SheetView)</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the index of the specified sheet in the collection.</p>
</td>
      </tr>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_Insert_System_Int32_FarPoint_Win_Spread_SheetView_" data-uid="FarPoint.Win.Spread.SheetViewCollection.Insert(System.Int32,FarPoint.Win.Spread.SheetView)">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.Insert.html#FarPoint_Win_Spread_SheetViewCollection_Insert_System_Int32_FarPoint_Win_Spread_SheetView_">Insert(int, SheetView)</a>
        </td>
        <td class="markdown level1 summary"><p>Inserts a sheet into the collection at the specified index.</p>
</td>
      </tr>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_Move_System_Int32_System_Int32_" data-uid="FarPoint.Win.Spread.SheetViewCollection.Move(System.Int32,System.Int32)">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.Move.html#FarPoint_Win_Spread_SheetViewCollection_Move_System_Int32_System_Int32_">Move(int, int)</a>
        </td>
        <td class="markdown level1 summary"><p>Moves the specified SheetView to a different index in the collection.</p>
</td>
      </tr>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_Remove_FarPoint_Win_Spread_SheetView_" data-uid="FarPoint.Win.Spread.SheetViewCollection.Remove(FarPoint.Win.Spread.SheetView)">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.Remove.html#FarPoint_Win_Spread_SheetViewCollection_Remove_FarPoint_Win_Spread_SheetView_">Remove(SheetView)</a>
        </td>
        <td class="markdown level1 summary"><p>Removes the specified sheet from the collection.</p>
</td>
      </tr>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_RemoveAt_System_Int32_" data-uid="FarPoint.Win.Spread.SheetViewCollection.RemoveAt(System.Int32)">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.RemoveAt.html#FarPoint_Win_Spread_SheetViewCollection_RemoveAt_System_Int32_">RemoveAt(int)</a>
        </td>
        <td class="markdown level1 summary"><p>Removes a sheet (SheetView object) from the collection at the specified index.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="events">Events
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_Changed" data-uid="FarPoint.Win.Spread.SheetViewCollection.Changed">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.Changed.html">Changed</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when a sheet is added, removed, or changed in the collection.</p>
</td>
      </tr>
      <tr>
        <td id="FarPoint_Win_Spread_SheetViewCollection_Changing" data-uid="FarPoint.Win.Spread.SheetViewCollection.Changing">
          <a class="xref" href="FarPoint.Win.Spread.SheetViewCollection.Changing.html">Changing</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when a sheet is about to be added, removed, or changed in the collection.</p>
</td>
      </tr>
    </tbody>
  </table>

</div>
