[c#]
public class SomeColumn : Column
{
//
//....
//
protected virtual void PaintTextInCell(CellDrawInfo dci, Brush bkBrush, Color foreColor)
{
Columns cols = dci.grid.Columns;
bool cellFocused = node.Selected && cols.CurrentColumn == dci.col;
//......
}
}
The same info - CellDrawInfo is provided for nodes and columns custom drawing.