Version

MRUList Property (UltraComboEditorColumn)

Gets/sets the MRU (most recently used) list associated with the control's dropdown list.
Syntax
'Declaration
 
Public Overridable Property MRUList As Object()
public virtual object[] MRUList {get; set;}
Remarks

MRU is an acronym for 'Most Recently Used'. The column's MRU list contains the text of the items that were most recently selected by the end user.

When the property is set to true, as items are selected, a copy of the item is added to the top of the MRU portion of the list. The other items contained in the MRU list, if any, are moved down. This process continues until the number of items in the MRU portion exceeds the value specified by the property. When this happens, the 'oldest' item is removed from the list.

Note: While the MRUList can be set, items that do not match the text of an item in the columns's collection have no relevance and are discarded.

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