GridCommentCollection.Item

GridCommentCollection indexer (1 of 3)

Gets the GridComment element at the specified index.

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

Return Value

The element at the specified index.

See Also


GridCommentCollection indexer (2 of 3)

Gets the GridComment element at the specified cell.

public GridComment this[string cellName] { get; }
ParameterDescription
cellNameCell name.

Return Value

The element at the specified cell.

See Also


GridCommentCollection indexer (3 of 3)

Gets the GridComment element at the specified row index and column index.

public GridComment this[int row, int column] { get; }
ParameterDescription
rowRow index.
columnColumn index.

Return Value

The element at the specified cell.

See Also