TableRowCollection.Item[Int32] 属性

定义

获取指定索引处的集合项。 这是一个索引属性。

public:
 property System::Windows::Documents::TableRow ^ default[int] { System::Windows::Documents::TableRow ^ get(int index); void set(int index, System::Windows::Documents::TableRow ^ value); };
public System.Windows.Documents.TableRow this[int index] { get; set; }
member this.Item(int) : System.Windows.Documents.TableRow with get, set
Default Public Property Item(index As Integer) As TableRow

参数

index
Int32

从零开始的索引,指定要检索的集合项的位置。

属性值

TableRow

指定索引处的集合项。

实现

例外

index 小于零,或 index 大于或等于 Count 时引发。

注解

这是一个索引属性,它支持标准索引语法 (类似于用于访问数组) 中的特定单元格。

适用于