Method Render
Render(ListView, 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 listView, bool selected, int item, int col, int line, int width, int start = 0)
Parameters
listViewListViewThe list view to render.
selectedboolDescribes whether the item being rendered is currently selected by the user.
itemintThe index of the item to render, zero for the first item and so on.
colintThe column where the rendering will start
lineintThe line where the rendering will be done.
widthintThe width that must be filled out.
startintThe 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.