TabularData.Rows Property
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
Gets or sets the collection of rows in the tabular data.
Namespace: Microsoft.MasterDataServices.Services.DataContracts
Assembly: Microsoft.MasterDataServices.Services.Contracts (in Microsoft.MasterDataServices.Services.Contracts.dll)
Syntax
'Declaration
<DataMemberAttribute> _
Public Property Rows As IList(Of TabularDataRow)
Get
Set
'Usage
Dim instance As TabularData
Dim value As IList(Of TabularDataRow)
value = instance.Rows
instance.Rows = value
[DataMemberAttribute]
public IList<TabularDataRow> Rows { get; set; }
[DataMemberAttribute]
public:
property IList<TabularDataRow^>^ Rows {
IList<TabularDataRow^>^ get ();
void set (IList<TabularDataRow^>^ value);
}
[<DataMemberAttribute>]
member Rows : IList<TabularDataRow> with get, set
function get Rows () : IList<TabularDataRow>
function set Rows (value : IList<TabularDataRow>)
Property Value
Type: System.Collections.Generic.IList<TabularDataRow>
The collection of rows in the tabular data.
See Also
Reference
Microsoft.MasterDataServices.Services.DataContracts Namespace