Removes a Row at the specified visible position.

Namespace: Dapfor.Net.Ui
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
public bool RemoveAt(
	int index
)
Visual Basic
Public Function RemoveAt ( 
	index As Integer
) As Boolean
Visual C++
public:
bool RemoveAt(
	int index
)
F#
member RemoveAt : 
        index : int -> bool 

Parameters

index
Type: System..::..Int32
The index of the Row to be removed.

Return Value

Type: Boolean
True if the Row has been successfully removed. Otherwise false.

Thread Safety

The function is thread safe. The Row is removed in the synchronous way with blocking the calling thread.

See Also