Class ToolStripExGlyphCollection
Inheritance
System.Object
ToolStripExGlyphCollection
Implements
System.Collections.IList
System.Collections.ICollection
System.Collections.IEnumerable
Namespace: Syncfusion.Windows.Forms.Tools.Design
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class ToolStripExGlyphCollection : GlyphCollection, IList, ICollection, IEnumerable
Constructors
ToolStripExGlyphCollection()
Declaration
public ToolStripExGlyphCollection()
Methods
OnClear()
Declaration
protected override void OnClear()
OnInsertComplete(Int32, Object)
Declaration
protected override void OnInsertComplete(int index, object value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | |
System.Object | value |
OnRemoveComplete(Int32, Object)
Declaration
protected override void OnRemoveComplete(int index, object value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | |
System.Object | value |
Explicit Interface Implementations
IList.Add(Object)
Declaration
int IList.Add(object value)
Parameters
Type | Name | Description |
---|---|---|
System.Object | value |
Returns
Type |
---|
System.Int32 |
IList.Contains(Object)
Determines whether the System.Collections.IList contains a specific value
Declaration
bool IList.Contains(object value)
Parameters
Type | Name | Description |
---|---|---|
System.Object | value | The System.Object to locate in the System.Collections.IList |
Returns
Type | Description |
---|---|
System.Boolean | true if the System.Object is found in the System.Collections.IList; otherwise, false |
IList.IndexOf(Object)
Determines the index of a specific item in the System.Collections.IList
Declaration
int IList.IndexOf(object value)
Parameters
Type | Name | Description |
---|---|---|
System.Object | value | The System.Object to locate in the System.Collections.IList |
Returns
Type | Description |
---|---|
System.Int32 | The index of value if found in the list; otherwise, -1 |
IList.Insert(Int32, Object)
Inserts an item to the System.Collections.IList at the specified index
Declaration
void IList.Insert(int index, object value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index at which value should be inserted |
System.Object | value | The System.Object to insert into the System.Collections.IList |
IList.Remove(Object)
Removes the first occurrence of a specific object from the System.Collections.IList
Declaration
void IList.Remove(object value)
Parameters
Type | Name | Description |
---|---|---|
System.Object | value | The System.Object to remove from the System.Collections.IList |
Implements
System.Collections.IList
System.Collections.ICollection
System.Collections.IEnumerable