Brings the specified index into view.
Syntax
'Declaration
Public Sub BringIndexIntoView( _
ByVal As Integer, _
Optional ByVal As Nullable(Of Rect), _
Optional ByVal As Boolean, _
Optional ByVal As Action _
)
'Usage
Dim instance As C1ListViewer
Dim index As Integer
Dim subOffset As Nullable(Of Rect)
Dim changeZoomIfNecessary As Boolean
Dim completed As Action
instance.BringIndexIntoView(index, subOffset, changeZoomIfNecessary, completed)
public void BringIndexIntoView(
int ,
Nullable<Rect> ,
bool ,
Action
)
public:
void BringIndexIntoView(
int ,
Nullable<Rect> ,
bool ,
Action^
)
Parameters
- index
- The index of the to bring into view.
- subOffset
- A sub area inside the item which can be used to scroll to a more specific point.
- changeZoomIfNecessary
- If true, the zoom will be changed so that the whole area is visible.
- completed
- Action called when the the animation completed.
See Also