firemonkey xe3 xe2 TPath

时间:2012-09-14 15:33:54

标签: delphi graphics delphi-xe2 firemonkey delphi-xe3

执行时遵循代码路径在xe2中是匀称的,但在xe3中是荒谬的。

procedure TForm2.Button1Click(Sender: TObject);
var
  Path : TPath;
begin
  Path := TPath.Create(Self);
  Path.Parent :=self;
  Path.Data.Data :=
  'M44.093,34.558v-2.83h12.793c4.131,0,8.301,3.841,8.301,8.969c0,4.375-2.829,7.607-6.49,8.462l8.106,8.105'+
    'c5.475-3.377,9.456-9.446,9.456-16.705c0-9.971-7.978-19.658-18.804-19.658H32.697v2.262L44.093,34.558z';


end;

1 个答案:

答案 0 :(得分:2)

The documentation表示形状由逗号或空格分隔;你的代码都不使用。该文档并未要求在以下数字的字母之间进行任何分隔,但我看到的所有示例都至少包含一个空格,而且我还读过the path-data parser prefers spaces before any negative numbers