Version

UltraListViewAction Enumeration

Enumeration which contains constants that identify the actions that can be performed on the UltraListView control.
Syntax
'Declaration
 
Public Enum UltraListViewAction 
   Inherits System.Enum
public enum UltraListViewAction : System.Enum 
Members
MemberDescription
ActivateAboveThe item above the currently active item is activated, and becomes the only selected item.
ActivateAboveNoSelectThe item above the currently active item is activated, but the existing selection is not altered.
ActivateAboveRangeSelectThe item above the currently active item is activated, and the existing selection is extended.
ActivateBelowThe item below the currently active item is activated, and becomes the only selected item.
ActivateBelowNoSelectThe item below the currently active item is activated, but the existing selection is not altered.
ActivateBelowRangeSelectThe item below the currently active item is activated, and the existing selection is extended.
ActivateFirstThe first item displayed by the control is activated, and becomes the only selected item.
ActivateFirstInIconColumnThe first item in the same icon column as the currently active item is activated.
ActivateFirstInIconRowThe first item in the same icon row as the currently active item is activated.
ActivateFirstNoSelectThe first item displayed by the control is activated, but the existing selection is not altered.
ActivateFirstRangeSelectThe first item displayed by the control is activated, and the existing selection is extended.
ActivateLastThe last item displayed by the control is activated, and becomes the only selected item.
ActivateLastInIconColumnThe last item in the same icon column as the currently active item is activated.
ActivateLastInIconRowThe last item in the same icon row as the currently active item is activated.
ActivateLastNoSelectThe last item displayed by the control is activated, but the existing selection is not altered.
ActivateLastRangeSelectThe last item displayed by the control is activated, and the existing selection is extended.
ActivateNextThe logically next item (to the right) of the currently active item is activated, and becomes the only selected item. Note that unlike the .NET ListView control, UltraListView wraps to the next logical row when the action is performed on the item in the last logical column.
ActivateNextNoSelectThe logically next item is activated, but the existing selection is not altered.
ActivateNextRangeSelectThe logically next item is activated, and the existing selection is extended.
ActivatePreviousThe logically previous item (to the left) of the currently active item is activated, and becomes the only selected item. Note that unlike the .NET ListView control, UltraListView wraps to the previous logical row when the action is performed on the item in the first logical column.
ActivatePreviousNoSelectThe logically previous item is activated, but the existing selection is not altered.
ActivatePreviousRangeSelectThe logically previous item is activated, and the existing selection is extended.
EnterEditModeEdit mode is entered on the currently active item.
ExitEditModeDiscardChangesEdit mode is exited on the currently active item, and changes made during the edit mode session are discarded.
ExitEditModeSaveChangesEdit mode is exited on the currently active item, and changes made during the edit mode session are assigned to the main sub-item's Value property.
PageDownThe item on the next logical page is activated.
PageDownNoSelectThe item on the next logical page is activated, but the existing selection is not altered.
PageDownRangeSelectThe item on the next logical page is activated, and the existing selection is extended.
PageUpThe item on the previous logical page is activated.
PageUpNoSelectThe item on the previous logical page is activated, but the existing selection is not altered.
PageUpRangeSelectThe item on the previous logical page is activated, and the existing selection is extended.
ScrollHorizontalByLargeDecrementScrolls the control to the left by a large scroll change.
ScrollHorizontalByLargeIncrementScrolls the control to the right by a large scroll change.
ScrollHorizontalBySmallDecrementScrolls the control toward the left by the number of pixels specified by the value of the UltraListView.ScrollbarSmallChangeHorizontal property.
ScrollHorizontalBySmallIncrementScrolls the control toward the right by the number of pixels specified by the value of the UltraListView.ScrollbarSmallChangeHorizontal property.
ScrollVerticalByLargeDecrementScrolls the control in the upward direction by a large scroll change.
ScrollVerticalByLargeIncrementScrolls the control in the downward direction by a large scroll change.
ScrollVerticalBySmallDecrementScrolls the control in the upward direction by the number of pixels specified by the value of the UltraListView.ScrollbarSmallChangeVertical property.
ScrollVerticalBySmallIncrementScrolls the control in the downward direction by the number of pixels specified by the value of the UltraListView.ScrollbarSmallChangeVertical property.
SelectAllItemsAll visible, enabled UltraListViewItem objects are selected.
SelectItemThe UltraListView.ActiveItem is selected, and any previous selection is cleared.
SetNextCheckStateForSelectedItemsThe UltraListViewItem.CheckState property is set to the next value in the cycle for all members of the UltraListView.SelectedItems collection.
ToggleItemSelectedStateThe selected state of the UltraListView.ActiveItem is toggled.
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