FMXTee.Import.pas(894):E2003未声明的标识符:'网格'

时间:2016-08-11 02:04:47

标签: delphi teechart delphi-10-seattle delphi-10.1-berlin

我尝试使用 XE10.1 Berlin 从TeeChart 9 for XE10 Seattle 编译文件 FMXTee.Import.pas并收到错误: [dcc32错误] FMXTee .Import.pas(894):E2003未声明的标识符:'网格',语法如下(文件FMXTee.Import.pas中):

result := .....
         {$IFDEF FMX}
         (AComponent is TImageControl) or
         ((AComponent is TColumn) and (TColumnAccess(AComponent).Grid<>nil) and (TColumnAccess(AComponent).Grid is TStringGrid)) or
         (AComponent is TTextControl)
         {$ELSE}
         (AComponent is TControl)
         {$ENDIF};

我认为因为来自XE10 Seattle软件包的文件 FMX.Grid.pas 与来自X10.1 Berlin软件包的 FMX.Grid.pas完全不同我找不到 TColumnAccess 类的网格属性。

现在,如何修复此错误? 请帮我。非常感谢。

0 个答案:

没有答案