Xceed DataGrid for Silverlight Documentation
DataPath Property (DataGridPath)


Gets the elements that make up an element's path.
Syntax
'Declaration
 
Public ReadOnly Property DataPath As IList(Of Object)
'Usage
 
Dim instance As DataGridPath
Dim value As IList(Of Object)
 
value = instance.DataPath
public IList<object> DataPath {get;}

Property Value

A generic list, the elements that make up an element's path.
Remarks

Each element that is part of a data path, with the exception of groups, is represented by the actual object instance. Groups are represented by their value. For example, if a group is represented by its value (e.g., "Canada") and a data item is represented by the actual object instance (e.g., OrderDataItem), the resulting data path for a data item that is located in a "Canada" group would be {"Canada", OrderDataItem}.

The element that is represented by the datagrid path is always the last element in the path. To retrieve the path of the parent element, the ParentPath property can be consulted.

Requirements

Target Platforms: Windows 7, Windows Vista, Windows XP SP3, Windows Server 2008 family

See Also

Reference

DataGridPath Class
DataGridPath Members

Additional Information

Paths and Containers

Send Feedback