We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f232d14 commit a0a126aCopy full SHA for a0a126a
1 file changed
README.md
@@ -136,14 +136,14 @@ Handle this event to automatically store the updated layout in the active datase
136
```pas
137
procedure TMainForm.dxReport1LayoutChanged(ASender: TdxReport);
138
begin
139
- // Start editing the active dataset record
+ // Start editing the active dataset record:
140
DataModule1.mdLayouts.Edit;
141
142
- // Save the report name and layout to the database
+ // Save the report name and layout to the database:
143
DataModule1.mdLayoutsName.AsString := dxReport1.ReportName;
144
DataModule1.mdLayoutsLayout.Assign(dxReport1.Layout);
145
146
- // Finish editing and post the modified record to the database
+ // Finish editing and post the modified record to the database:
147
DataModule1.mdLayouts.Post;
148
end;
149
```
0 commit comments