EntityPicker.PickedValue Property
Gets or sets the entity that the user chooses in the user control.
Namespace: Microsoft.SharePoint.WebControls
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
Public Property PickedValue As Pair(Of ILobSystemInstance, IEntity)
Get
Set
'Usage
Dim instance As EntityPicker
Dim value As Pair(Of ILobSystemInstance, IEntity)
value = instance.PickedValue
instance.PickedValue = value
public Pair<ILobSystemInstance, IEntity> PickedValue { get; set; }
Property Value
Type: Microsoft.BusinessData.Infrastructure.Pair<ILobSystemInstance, IEntity>
A Pair<T1, T2> object. The first member is an ILobSystemInstance object that represents the picked entity. The second member is an IEntity object that describes the picked entity. The setter may throw an ArgumentException if the passed in value is empty.