Skip to main content

GridControl.IsValidRowHandle(Int32) Method

Indicates whether the specified row handle is valid.

Namespace: DevExpress.UI.Xaml.Grid

Assembly: DevExpress.UI.Xaml.Grid.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public bool IsValidRowHandle(
    int rowHandle
)

Parameters

Name Type Description
rowHandle Int32

An integer value that specifies the row’s handle.

Returns

Type Description
Boolean

true if the specified row handle is valid; otherwise, false.

Remarks

An invalid row handle corresponds to a row which doesn’t exist in a grid. Its handle is returned by the DataControlBase.InvalidRowHandle property.

See Also