CellEditorPresenter.PathMode Property
Specifies whether the CellEditorPresenter.Path property represents an absolute path or a path relative to the parent PropertyDefinition. This is a dependency property.
Namespace: DevExpress.Xpf.PropertyGrid
Assembly: DevExpress.Xpf.PropertyGrid.v24.2.dll
NuGet Package: DevExpress.Wpf.PropertyGrid
#Declaration
public CellEditorPresenterPathMode PathMode { get; set; }
#Property Value
Type | Description |
---|---|
Cell |
A Cell |
Available values:
Name | Description |
---|---|
Absolute | The Cell |
Relative | The Cell |
#Remarks
Use the PathMode property to specify whether the CellEditorPresenter.Path property represents a relative path or an absolute path.
Relative path points to a property of an object associated with the parent PropertyDefinition.
Absolute path points to a property of the PropertyGridControl.SelectedObject.
The following example demonstrates the difference between absolute and relative property paths.
public class Person {
public string FirstName { get; set; }
public string LastName { get; set; }
public Address Address { get; set; }
public string Phone { get; set; }
}
public class Address {
public string AddressLine1 { get; set; }
public string AddressLine2 { get; set; }
}