I'm a newbie programmer. I need to use Delphi's in
operator in C++ Builder XE like this:
if (dgColLines in DBGrid->Options)
// include vertical lines in total (one per column)
TotalColumnWidth = TotalColumnWidth + ColumnCount;
if (dgColLines **in** DBGrid->Options)
How to do that in C++ Builder?
Thanks in advance.