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


The path (see DataGridPath class) representing 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.
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 represented by the path should be made current; false if the current current item should remain unchanged.
true if the item represented by the path should be selected; false if the current selection should remain unchanged.
Brings the item represented by the specified path and column into view, indicating whether the item should be made current and/or selected.
Syntax
'Declaration
 
Public Overloads Sub BringItemIntoView( _
   ByVal dataGridPath As DataGridPath, _
   ByVal column As Column, _
   ByVal updateCurrent As Boolean, _
   ByVal updateSelection As Boolean _
) 
'Usage
 
Dim instance As DataGridContext
Dim dataGridPath As DataGridPath
Dim column As Column
Dim updateCurrent As Boolean
Dim updateSelection As Boolean
 
instance.BringItemIntoView(dataGridPath, column, updateCurrent, updateSelection)
public void BringItemIntoView( 
   DataGridPath dataGridPath,
   Column column,
   bool updateCurrent,
   bool updateSelection
)

Parameters

dataGridPath
The path (see DataGridPath class) representing 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.
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 represented by the path should be made current; false if the current current item should remain unchanged.
updateSelection
true if the item represented by the path 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