TVMLExportFormat
 
 
 

All Units  All Classes  Properties, Methods and Events  

TVMLExportFormat
Hierarchy     Methods     

Unit
TeeVMLCanvas

Description
This class implements an "export format", to convert Charts into VML format.

VML (Vector Markup Language) is a vectorial format defined at:

http://www.w3.org/TR/NOTE-VML

Microsoft's Internet Explorer (version 5 and up) can display VML files.

Example:

procedure TForm1.Button1Click(Sender: TObject);
begin
with TVMLExportFormat.Create do
try
Panel:=Chart1;
SaveToFile('c:\test.
htm');
finally
Free;
end;
end;

You can then use Internet Explorer to open the test.
htm file.

Alternative method:

TeeSaveToVMLFile(Chart1,'c:\test.htm');




Send us Help Feedback. Copyright 1995-2013 © by Steema Software. All Rights Reserved.