Xceed DataGrid for Silverlight Documentation
BringItemIntoView(Object,Column,Boolean,Boolean) Method


The item to bring into view. If the item is below the viewport, it will be brought into view at the bottom of the viewport. If it is above, it will be brought to the top of the viewport. Can be a null reference (Nothing in Visual Basic).
The Column to bring into view. If the column is to the right of the viewport, it will be brought into view on the right side of the viewport. If it is to the left, it will be brought to the left side of the viewport. Can be a null reference (Nothing in Visual Basic).
true if the item should be made current; false if the current current item should remain unchanged.
true if the item should be selected; false if the current selection should remain unchanged.
Brings the specified item and column into view, indicating whether the item should be made current and/or selected.
Syntax
'Declaration
 
Public Overloads Sub BringItemIntoView( _
   ByVal item As Object, _
   ByVal column As Column, _
   ByVal updateCurrent As Boolean, _
   ByVal updateSelection As Boolean _
) 
'Usage
 
Dim instance As DataGridContext
Dim item As Object
Dim column As Column
Dim updateCurrent As Boolean
Dim updateSelection As Boolean
 
instance.BringItemIntoView(item, column, updateCurrent, updateSelection)
public void BringItemIntoView( 
   object item,
   Column column,
   bool updateCurrent,
   bool updateSelection
)

Parameters

item
The item to bring into view. If the item is below the viewport, it will be brought into view at the bottom of the viewport. If it is above, it will be brought to the top of the viewport. Can be a null reference (Nothing in Visual Basic).
column
The Column to bring into view. If the column is to the right of the viewport, it will be brought into view on the right side of the viewport. If it is to the left, it will be brought to the left side of the viewport. Can be a null reference (Nothing in Visual Basic).
updateCurrent
true if the item should be made current; false if the current current item should remain unchanged.
updateSelection
true if the item should be selected; false if the current selection should remain unchanged.
Requirements

Target Platforms: Windows 7, Windows Vista, Windows XP SP3, Windows Server 2008 family

See Also

Reference

DataGridContext Class
DataGridContext Members
Overload List

Send Feedback