Version

SelectionChanged Method (XamGridProxyBase)

Add and remove one or many items of the supplied selection types to the selected items collection
Syntax
'Declaration
 
Public Sub SelectionChanged( _
   ByVal oEnumSelectedType As System.Object, _
   ByVal oSelectedItemsAdded As System.Object, _
   ByVal oEnumRemovedType As System.Object, _
   ByVal oSelectedItemsRemoved As System.Object _
) 
public void SelectionChanged( 
   System.object oEnumSelectedType,
   System.object oSelectedItemsAdded,
   System.object oEnumRemovedType,
   System.object oSelectedItemsRemoved
)
public: void SelectionChanged( 
   System.Object* oEnumSelectedType,
   System.Object* oSelectedItemsAdded,
   System.Object* oEnumRemovedType,
   System.Object* oSelectedItemsRemoved
) 

Parameters

oEnumSelectedType
string or enumerated value representing the type of subitem to add to selection
oSelectedItemsAdded
Represents a single path to a grid selectable item, or an object array of grid selectable items. A path to a record can be either an integer of the visible index, or a string path to the record. A string path to a cell or a string path to a field.
oEnumRemovedType
string or enumerated value representing the type of subitem to remove from selection
oSelectedItemsRemoved
Represents a single path to a grid selectable item, or an object array of grid selectable items. A path to a record can be either an integer of the visible index, or a string path to the record. A string path to a cell or a string path to a field.
Requirements

Target Platforms: 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