Inserts a Column to the IList 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,
	Object value
)
Visual Basic
Public Sub Insert ( 
	index As Integer,
	value As Object
)
Visual C++
public:
virtual void Insert(
	int index, 
	Object^ value
) sealed
F#
abstract Insert : 
        index : int * 
        value : Object -> unit 
override Insert : 
        index : int * 
        value : Object -> unit 

Parameters

index
Type: System..::..Int32
The zero-based index at which value should be inserted.
value
Type: System..::..Object
The Column to insert into the IList.

Implements

IList..::..Insert(Int32, Object)

See Also