是否可以通过某种方式获取用户在报表编辑器上选择的对象/组件?我的意思是,Delphi应用程序有什么方法可以知道已选择了哪个项目/对象/组件?
例如,如果我单击TfrxMemoView或TfrxPictureView,我希望我的Delphi应用程序可以识别该对象,以便您可以使用它,就像这样...
myMemo := myDesigner.getSelected;
或
myMemo := myReport.getSelected;
我正在使用FastReports VCL 6。
如果您知道该如何实现,那将非常有帮助。
答案 0 :(得分:0)
好吧,如果您需要做的和我一样,我设法做到了:
for I := 0 to Report.Designer.SelectedObjects.Count - 1 do
begin
ShowMessage(TfrxComponent(Report.Designer.SelectedObjects.Items[i]).Name);
if TfrxComponent(Report.Designer.SelectedObjects.Items[i]) is TfrxMemoView then
begin
TfrxMemoView(Report.Designer.SelectedObjects.Items[i]).Align:= baLeft;
Report.Designer.ReloadObjects();{to refresh the designer as it was embedded in a panel and I wanted to change components properties on "realtime"}
end;
end;