Version

EditorWithComboValueSource Enumeration

Constants which specify how the value of the Value property for the EditorWithCombo embeddable editor is obtained.
Syntax
'Declaration
 
Public Enum EditorWithComboValueSource 
   Inherits System.Enum
public enum EditorWithComboValueSource : System.Enum 
Members
MemberDescription
CheckedItemsThe value of the Value property is obtained from the CheckedItems collection of the associated ValueList. When one or more items is checked, the DataValue of each ValueListItem that belongs to the CheckedItems collection is added to a generic object list, and that list is returned.
SelectedItemThe value of the Value property is obtained from the currently selected ValueListItem. The Value property can in this case return either null, text as typed by the end user, or the DataValue of the selected item.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also