Version

SelectCarouselItem Method

Selects the item of the CarouselListBox control identified by its index in the list. Currently, only one item can be selected at a time( multiple select is not allowed ).
Syntax
'Declaration
 
Public Sub SelectCarouselItem( _
   ByVal iCarouselItemIndex As System.Integer, _
   Optional ByVal regionToClick As IGRectRegion, _
   Optional ByVal dClickPosX As System.Double, _
   Optional ByVal dClickPosY As System.Double _
) 
public void SelectCarouselItem( 
   System.int iCarouselItemIndex,
   IGRectRegion regionToClick,
   System.double dClickPosX,
   System.double dClickPosY
)
public: void SelectCarouselItem( 
   System.int iCarouselItemIndex,
   IGRectRegion regionToClick,
   System.double dClickPosX,
   System.double dClickPosY
) 

Parameters

iCarouselItemIndex
The index of the currently selected item of XamCarouselListBox's list
regionToClick
Optional region to click on the selected item
dClickPosX
Optional X co-ordinate of the region to click on the selected item
dClickPosY
Optional Y co-ordinate of the region to click on the selected item
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