Inserts a style into the collection at the specified index.
Syntax
'Declaration
Public Overridable Sub Insert( _
ByVal As System.Integer, _
ByVal As StyleInfo _
)
'Usage
Dim instance As StyleInfoCollection
Dim index As System.Integer
Dim style As StyleInfo
instance.Insert(index, style)
public virtual void Insert(
System.int ,
StyleInfo
)
Parameters
- index
- Zero-based index at which to insert the named style.
- style
- Style to insert into the collection.
Exceptions
Exception | Description |
System.IndexOutOfRangeException |
Specified index is out of range; must be between 0 and the total number in the collection.
|
System.ArgumentNullException |
No style specified, or the specified style is null.
|
See Also