How can I read the appearance of a cell when this cell has been formatted with a conditional format (Column.ValueBasedAppearance)?Is there any trick.Our problem is that the user can format the data in the grid using the conditional formatting. We then have a separate HTML export method, which reads the data from the grid and writes it in our HTML file. The formatting (colors, fonts, etc.) must be read here too.
Hi,
To get the actual on-screen appearance of a cell, you should use the cell's ResolveAppearance method.
Hello mike,
thx a lot!