GridValidationCollection.Item

GridValidationCollection indexer (1 of 2)

Gets the Hyperlink element at the specified index.

public GridValidation this[int index] { get; }
ParameterDescription
indexThe zero based index of the element.

Return Value

The element at the specified index.

See Also


GridValidationCollection indexer (2 of 2)

Gets the GridValidation element at the specified cell.if no validation ,then return null.

public GridValidation this[int row, int column] { get; }
ParameterDescription
rowThe row of the cell.
columnThe column of the cell.

Return Value

The element at the specified index.

Remarks

If there is not a validation object at specified row column index, this will check the column validation object.

See Also