IRow<TModel> Interface
Definition
Represents a row in an Avalonia.Controls.ITreeDataGridSource.
public interface IRow<TModel>
Methods
| Name | Description |
|---|---|
| UpdateModelIndex | Updates the model index due to a change in the data source. |
UpdateModelIndex Method
Updates the model index due to a change in the data source.
public void UpdateModelIndex(int delta)
Parameters
delta int
The index delta.
Properties
| Name | Description |
|---|---|
| Model | Gets the row model. |
Model Property
Gets the row model.
public TModel Model { get; set; }