TabularDataRow.Values Property
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
Gets or sets the values in a data row.
Namespace: Microsoft.MasterDataServices
Assembly: Microsoft.MasterDataServices (in Microsoft.MasterDataServices.dll)
Syntax
'Declaration
<DataMemberAttribute> _
Public Property Values As Collection(Of Object)
Get
Set
'Usage
Dim instance As TabularDataRow
Dim value As Collection(Of Object)
value = instance.Values
instance.Values = value
[DataMemberAttribute]
public Collection<Object> Values { get; set; }
[DataMemberAttribute]
public:
property Collection<Object^>^ Values {
Collection<Object^>^ get ();
void set (Collection<Object^>^ value);
}
[<DataMemberAttribute>]
member Values : Collection<Object> with get, set
function get Values () : Collection<Object>
function set Values (value : Collection<Object>)
Property Value
Type: System.Collections.ObjectModel.Collection<Object>
The values in a data row.