Version

Row Property

The grid row being initialized.
Syntax
'Declaration
 
Public ReadOnly Property Row As Infragistics.Win.UltraWinGrid.UltraGridRow
public Infragistics.Win.UltraWinGrid.UltraGridRow Row {get;}
Remarks

This row is not the same as the row in the On-screen grid. It is a new row that belongs to the export layout. As such, properties of the row can safely be modified and will affect the export, but will not affect the on-screen grid.

Note: The Value property of a cell is not stored by the row. It is stored by the underlying data source. So setting the Value of a cell in this row will affect the same data source as the on-screen grid.

Note: Since this row is part of the export layout, it will not share state information (such as the selected or expanded state) with the on-screen row. To get a reference to the corresponding on-screen grid row, use the Infragistics.Win.UltraWinGrid.UltraGrid.GetRowFromPrintRow(Infragistics.Win.UltraWinGrid.UltraGridRow) method of the grid.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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