Inserts a Header to the IList<(Of <(<'T>)>)> at the specified index.

Namespace: Dapfor.Wpf.Controls
Assembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)

Syntax

C#
public void Insert(
	int index,
	Header item
)
Visual Basic
Public Sub Insert ( 
	index As Integer,
	item As Header
)
Visual C++
public:
virtual void Insert(
	int index, 
	Header^ item
) sealed
F#
abstract Insert : 
        index : int * 
        item : Header -> unit 
override Insert : 
        index : int * 
        item : Header -> unit 

Parameters

index
Type: System..::..Int32
The zero-based index at which item should be inserted.
item
Type: Dapfor.Wpf.Controls..::..Header
The Header to insert into the IList<(Of <(<'T>)>)>.

Implements

IList<(Of <(<'T>)>)>..::..Insert(Int32, T)

See Also