Gets the 
TableCell at the intersection of the specified row and column. This property always returns a non-
nullTableCell object.
 
            
            
            
            
            
            
            
            '宣言
 
Public ReadOnly Property Item( _
   ByVal  As System.Integer, _
   ByVal  As System.Integer _
) As TableCell
             
        
            
            '使用法
 
Dim instance As TableCellCollection
Dim row As System.Integer
Dim col As System.Integer
Dim value As TableCell
 
value = instance.Item(row, col)
             
        
            
            public TableCell Item( 
   System.int ,
   System.int 
) {get;}
             
        
             
        
            パラメータ
- row
 
- The 0-based row index.
 - col
 
- The 0-based column index.
 
            
            プロパティ値
The cell at the intersection of the specified row and column.