Search code examples
delphidelphi-7

TChromeTabs - How to set tab icon from http ( or file )?


I know how set icon tabs via TChromeTab.ImageIndex.

chTabs: TChromeTabs;

chTabs.Tabs[i].ImageIndex := 0;
chTabs.Tabs[i].SpinnerState := tssNone;

How to assign ico directly from http or file?


Solution

  • The image list and image index are the way to specify the icon. Therefore you need to download the icon, add it to the image list, and set the image index to be that of the newly added icon.