SliceUpdate.NewValues Property
Gets or sets values that will be added to the serializer's data when this SliceUpdate is applied. Represented as a two level map: record keys to field keys to cell values.
Namespace: Microsoft.SharePoint.JSGrid
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Property NewValues As IDictionary(Of Object, IDictionary(Of String, Object))
Get
Set
'Usage
Dim instance As SliceUpdate
Dim value As IDictionary(Of Object, IDictionary(Of String, Object))
value = instance.NewValues
instance.NewValues = value
public IDictionary<Object, IDictionary<string, Object>> NewValues { get; set; }
Property Value
Type: System.Collections.Generic.IDictionary<Object, IDictionary<String, Object>>
An IDictionary<TKey, TValue> of record identifiers, mapped to their new field keys and cell values.