Closed kabiri closed 2 years ago
Yes, because you must use TSVGIconImageList for FMX (look at SVGIconImageListDemoFMX). TSVGIconImageCollection is a VCL component used to combine a collection of SVG images and VirtualImageList.
becase TSVGIconImageList don`t have SVGText property i use TSVGIconImageCollection. i can not use "SVGIconImageList1.Source[7].SVGText" "SVGIconImageCollection1.SVGIconItems[7].SVGText"
You can use: function TSVGIconImageList.InsertIcon(const AIndex: Integer; const ASVGText: string; const AIconName: string = ''): TSVGIconSourceItem;
i want get SVGText of icon.
with
LIconItem: TSVGIconItem;
LList: TSVGIconImageList;
you can:
LIconItem := LList.SVGIconItems[Index];
SvgText := LIconItem.SVGText;
Look into SVGIconImageListEditorUnit, the component editor, to explore how to use TSVGIconImageList
ok thanks
when i add TSVGIconImageCollection to FMX form delphi add Vcl.BaseImageCollection to unit