I do have a stringgrid containing HTMLText and controls. The best sample program I found is asg54 in sample collection installed along with the UI Pack. However, I'm searching for a tool to manipulate the edit-font in the edit control.
Say:
CONTROL TYPE="EDIT" WIDTH="80" VALUE="" ID="ED1">
How do I set the font type, size, style, color within this edit field? And also font in the drop list in
CONTROL TYPE="COMBO" WIDTH="60" ID="CO1">
br.
Anders Balslev
This is currently not exposed. These are default edit & combobox controls. These are in the private section of TAdvStringGrid
FEditControl: TControlEdit;
FComboControl: TControlCombo;
so, to change the font, we would need to expose these controls to make these publicly accessible.