Get table cell by row and column indexes.

Namespace: Spire.Doc
Assembly: Spire.Doc (in Spire.Doc.dll) Version: 9.6.1.0 (9.6.1.3020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public TableCell this[
	int row,
	int column
] { get; }
Public ReadOnly Default Property Item ( 
	row As Integer,
	column As Integer
) As TableCell
	Get
public:
virtual property TableCell^ default[int row, int column] {
	TableCell^ get (int row, int column) sealed;
}
abstract Item : TableCell with get
override Item : TableCell with get

Parameters

row
Int32
column
Int32

Property Value

TableCell

Implements

ITable..::..Item[([( Int32, Int32])])

See Also