GridEXRow FRow = grdTest.FilterRow;
if (FRow != null)
{
grdTest.Row = FRow.RowIndex;
grdTest.Col = grdTest.RootTable.Columns["ColumnName"].Index
}
如果要过滤具有任何特定值的网格,则:
grdTest.Row = grdTest.FilterRow.Position;
grdTest.SetValue("ColumnName", "FilterValue");