ImageEn, unit iexBitmaps

TIOParams.SVG_TagCount

TIOParams.SVG_TagCount


Declaration

property SVG_TagCount: Integer;


Description

Returns the number of tags found in the loaded SVG file.
The value is approximate.


Note: This property is only valid after loading, and has no effect when saving


Example

ImageEnView1.IO.ParamsFromFile( 'D:\lion.svg' );
Memo1.Lines.Add( format( 'Size: %d x %d', [ ImageEnView1.IO.Params.Width, ImageEnView1.IO.Params.Height ]));
Memo1.Lines.Add( format( 'Tag Count: %d', [ ImageEnView1.IO.Params.SVG_TagCount ]));
Memo1.Lines.Add( format( 'Title: %s', [ ImageEnView1.IO.Params.SVG_Title ]));