Class ListViewRowEventArgs
System.EventArgs used by the RowRender event.
Inheritance
System.Object
ListViewRowEventArgs
Namespace: Terminal.Gui
Assembly: Terminal.Gui.dll
Syntax
public class ListViewRowEventArgs : EventArgs
Constructors
ListViewRowEventArgs(Int32)
Initializes with the current row.
Declaration
public ListViewRowEventArgs(int row)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | row |
Properties
Row
The current row being rendered.
Declaration
public int Row { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
RowAttribute
The Attribute used by current row or
null to maintain the current attribute.
Declaration
public Nullable<Attribute> RowAttribute { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<Attribute> |