Infragistics3.Wpf.DataPresenter.v7.2
DataRecord Class
See Also  Members  
Infragistics.Windows.DataPresenter Namespace : DataRecord Class

Used by a XamDataGrid, XamDataCarousel or XamDataPresenter to represent an item in the DataSource.

Object Model










Syntax

Visual Basic (Declaration) 
Public Class DataRecord 
   Inherits Record
   Implements ISparseArrayItemISparseArrayMultiItemISelectableItem 
C# 
public class DataRecord : Record, ISparseArrayItemISparseArrayMultiItemISelectableItem  

Remarks

This object wraps an item from a DataPresenterBase.DataSource. The underlying data item is exposed via the read-only DataRecord.DataItem property and its associated index in the DataSource is returned via the DataRecord.DataItemIndex property.

Note: This is not a UIElement but is a lightweight wrapper around the data item. It is represented in the UI via a corresponding DataRecordPresenter element.

Refer to the Records topic in the Developer's Guide for a explanation of the various record types.

Refer to the Theory of Operation topic in the Developer's Guide for an overall explanation of how everything works together.

See Also