I need to have several styles for my project. One is default style. So, I empty the "StyleLookup" property.
And I need to set the gutter width in run-time but it didn't work. My code is below:
Memo1->StyleLookup = "";
Memo1->NeedStyleLookup();
Memo1->ApplyStyleLookup();
Memo1->GetGutter()->Width = 18;
How can I change gutter width in run-time?
Thanks!