Hide Comments
Hide Comments

Comments (0)

Contains all SVG elements (visual and non-visual) parsed from a SVG. The TSVGElement.ID property is the hash for each element.

Namespace: FMX.RS.SVG

expandingSyntax

Delphi

public
  property AllItems: TSVGElementTable read FAllItems;
 

Property Value

Type: TSVGElementTable

expandingExamples

The following code iterates over all the SVG elements in the document:

alert_noteDelphi Note

var
Element: TSVGElement;
begin
for Element in Doc. AllItems.Values do
ListBox1.Items.AddObject(Element.ID, Element);
end;

expandingSee Also

Reference

Comments (0)

RiverSoftAVG SVG Component Library (RSCL) © 2013-2015, Thomas G. Grubb