Class CustomXmlSchemaCollection
Represents the custom xml schema collection
Inheritance
System.Object
    CustomXmlSchemaCollection
  Namespace: Syncfusion.XlsIO.Implementation
Assembly: Syncfusion.XlsIO.UWP.dll
Syntax
public class CustomXmlSchemaCollection : Object, ICustomXmlSchemaCollection, IEnumerable
  Constructors
CustomXmlSchemaCollection()
Declaration
public CustomXmlSchemaCollection()
  Properties
Count
Gets the count of xml schema items
Declaration
public int Count { get; }
  Property Value
| Type | 
|---|
| System.Int32 | 
Item[Int32]
Gets or sets the item in specified index
Declaration
public string this[int index] { get; set; }
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | index | 
Property Value
| Type | 
|---|
| System.String | 
Methods
Add(String)
Adds the value into collection
Declaration
public void Add(string name)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | name | 
Clear()
Clears the items in collection
Declaration
public void Clear()
  Clone()
Defines a new name.
Declaration
public ICustomXmlSchemaCollection Clone()
  Returns
| Type | 
|---|
| ICustomXmlSchemaCollection | 
GetEnumerator()
Gets the Enumerator
Declaration
public IEnumerator GetEnumerator()
  Returns
| Type | 
|---|
| System.Collections.IEnumerator | 
IndexOf(String)
Gets the index of value
Declaration
public int IndexOf(string value)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | value | 
Returns
| Type | 
|---|
| System.Int32 | 
Remove(String)
Removes the item from collection
Declaration
public void Remove(string name)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | name | 
RemoveAt(Int32)
Removes the item at specified index in the collection
Declaration
public void RemoveAt(int index)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | index | 
Implements
      System.Collections.IEnumerable