DataGridColumn.GetCellContent Method (Object)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Gets the Content property value for the cell at the intersection of this column and the row that represents the specified data item.
Namespace: System.Windows.Controls
Assembly: System.Windows.Controls.Data (in System.Windows.Controls.Data.dll)
Syntax
'Declaration
Public Function GetCellContent ( _
dataItem As Object _
) As FrameworkElement
public FrameworkElement GetCellContent(
Object dataItem
)
Parameters
- dataItem
Type: System.Object
The data item represented by the row that contains the intended cell.
Return Value
Type: System.Windows.FrameworkElement
The cell content. Returns nulla null reference (Nothing in Visual Basic) if the row containing dataItem is not found.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | dataItem is nulla null reference (Nothing in Visual Basic). |
InvalidOperationException | This column has not been added to a DataGrid. |
Version Information
Silverlight
Supported in: 5, 4, 3
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also