Method Render
Render(ListView, ConsoleDriver, bool, int, int, int, int, int)
This method is invoked to render a specified item, the method should cover the entire provided width.
void Render(ListView container, ConsoleDriver driver, bool selected, int item, int col, int line, int width, int start = 0)
Parameters
container
ListViewThe list view to render.
driver
ConsoleDriverThe console driver to render.
selected
boolDescribes whether the item being rendered is currently selected by the user.
item
intThe index of the item to render, zero for the first item and so on.
col
intThe column where the rendering will start
line
intThe line where the rendering will be done.
width
intThe width that must be filled out.
start
intThe index of the string to be displayed.
Remarks
The default color will be set before this method is invoked, and will be based on whether the item is selected or not.